I get this message when I am trying to access a web service from Jquery located in SAME the URL (but different directory).
I know it is IE security setting. The que
I know this is caused because of 'Cross-domain data access' which I have enabled by
jQuery.support.cors = true;
In my Ajax call I had to specify jsonp as my data type to fix the issue.
jsonp
$.ajax({ url: "xxx", dataType: "jsonp", ... });