When using firefox, an ajax post request i have is being reported as aborted in firebug. The ajax post works fine in IE and Chrome. It is not a cross domain request. I tr
I also had similar issues and tried some of the ideas described above. I finally fixed "aborted" state by :
e.preventDefault();
return false;
datatype: "json", contentType: "application/json",
jQuery.ajax
Thx to everyone for the clues.