please i need help in my ajax code, i have an error in sending the data in ajax. it give me an error in data syntax, i tried to change it many time and i did't success-ed
this is my code :
$.ajax({
type: "POST",
url: "customer.php",
data: {content : '"msisdn = '+mob+'"' , type : 'GetCustomer' },
dataType: "json",
success:function(data){
alert(data);
},
error: function(error) {
}
});