I have some ajax that is causing an issue in Chrome but not IE. I trapped the traffic using Fiddler and I compared it to the IE traffic and I see that the content type is missing in the Chrome request, and the verb in the chrome request is set to "Options" rather than post. When I modify those two things and resubmit with Fiddler it works fine. Any ideas what is causing these issues?
jQuery.ajax({
url: url,
type:'POST',
contentType:"application/json; charset=utf-8",
cache: false,
data: request,
success:function(data) {
alert("Success!!!");
},
error: function(jqxhr, textStatus, errorThrown){
alert("Error : " + errorThrown + " textStatus: " + textStatus );
}
});