Ajax Calls Not Working In Internet Explorer 8
After testing the external js files in IE 8, the calls to post data to a controller does not work. After googling, I found a fix that is to set true to jquery support cors.
jQuery Code:
CORS, INTERNET EXPLORER 8, AND XDOMAINREQUEST
Cheers!
jQuery Code:
1 | jQuery.support.cors = true;
|
Cheers!
Comments
Post a Comment