I am having a problem with jQuery ajax in Google Chrome. My Code is as follows:
$.ajax({
type: "POST",
url: "Customer_search.asp",
data: '' + $('#abc').serialize(),
success: function(data){
//console.log('yay');
$('#SearchResults').html(data);
sortables_init();
},
error: function(){
alert("Hello");
}
});
In Firefox and IE everything works fine and the response is inserted into the div called SearchResults. However in Chrome, the success function is not called, and neither is the error function! I have looked all over the place and seems many people have come across similar problems, but none of their solutions worked for me.
I also tried post to see if it was a problem with ajax and it still doesnt work
Furthermore, I deleted the page it was trying to access throught the ajax method and the error function was called!
Cheers, Anthony