[jQuery] $.ajax call doesn't complete on 400 bad request response

2010-01-18 Thread anton
Can't seem to get any response from an ajax call which response is 400 Bad Request $.ajax({ url: url type: GET, dataType: json, success: aj.dataLoaded, error: function() { alert(error);

Re: [jQuery] $.ajax call doesn't complete on 400 bad request response

2010-01-18 Thread Nathan Klatt
On Mon, Jan 18, 2010 at 11:05 AM, anton anton.johans...@gmail.com wrote: Can't seem to get any response from an ajax call which response is 400 Bad Request      $.ajax({               url: url               type: GET,               dataType: json,               success: aj.dataLoaded,    

Re: [jQuery] $.ajax call doesn't complete on 400 bad request response

2010-01-18 Thread Nathan Klatt
On Mon, Jan 18, 2010 at 11:05 AM, anton anton.johans...@gmail.com wrote: Can't seem to get any response from an ajax call which response is 400 Bad Request      $.ajax({               url: url               type: GET, Hey, is that missing comma after url a typo? Nathan