$.ajax({
url:'ajax.php?action=wordFind&word='+arrString,
cache: true,
async:false,
dataType:html,//If the response is json replace it with "json"
type: "GET",
success:function(res){
console.log(res);//To check you are getting any reponse
if(res=="find")
{
//Do the stuff you want.
}
}
});
2
solved Jquery Ajax responce not working in safari..but other browser it is work fine..what is mistake here? [closed]