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.

3 comments:

  1. Its is giving Access denied error

    ReplyDelete
  2. I got the same error. Access is denied.

    ReplyDelete
  3. After adding
    $.support.cors = true;
    am getting Access denied error..

    ReplyDelete