Showing posts with label jQuery. Show all posts
Showing posts with label jQuery. Show all posts

Dec 24, 2012

jQuery "No Transport" error solution

If you get a "No Transport" error then making AJAX request using jQuery in Internet Explorer, then solution is as simple as adding:
$.support.cors = true;
before making your calls to
$.ajax(...)
For some other possible options take a look here.