I am making a request and then right after it I abort.
var x = $.get(url, function (d, e, xhr) { alert(d); }); x.abort();
The problem is th
This is by design. Test if data is null to determine if the request responded correctly.
data
If a request with jQuery.get() returns an error code, it will fail silently unless the script has also called the global .ajaxError() method.
It may be useful to handle this (from here).