We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
$.when( $.ajax("test.aspx") ).then(function(ajaxArgs){ alert(ajaxArgs[1]); /* ajaxArgs is [ "success", statusText, jqXHR ] */ });
should be
$.when( $.ajax("test.aspx") ).then(function(data){ alert(data); /* arguments is [ "success", statusText, jqXHR ] */ });