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

link|improve this question

50% accept rate
What's happening in the "Network" inspector tab? Anything in the error console? – Phil Aug 8 '11 at 5:30
Phil, I can't comment but I have checked the error console. I seem to be receiving the correct response if that's what you were getting at, and everything works the same as ie and ff except the success callback is not called and neither is the the error callback – Anthony Wood Aug 8 '11 at 21:22
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.