Skip to content Skip to sidebar Skip to footer

Jquery Ajax Error On Internet Explorer

I'm making an Ajax Request, it's working in all browser, but in Internet Explorer It's not working. I need that works for internet explorer 9 + That's the request: function loadYou

Solution 1:

Have you tried to using jsonp format?

The json format has a issue when use over cross-domain (different domain).

So, you need to use jsonp instead of json, jsonp using javascript callback for solve the cross-domain issue.

more: http://www.sitepoint.com/jsonp-examples/


You don't need create pipe for api request.

Youtube support jsonp format using &callback= parameter.

Post a Comment for "Jquery Ajax Error On Internet Explorer"