Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Could you check if the problem with IE relies on not defining security zones to allow cross domain requests? <a href="http://msdn.microsoft.com/en-us/library/ms537505%28VS.85%29.aspx" rel="noreferrer">See this microsoft page</a> for an explanation.</p> <p>OTOH, <a href="http://www.actionmonitor.co.uk/news/6/javascript-data-access-techniques-%28xmlhttprequest-" rel="noreferrer">this page</a> mentions that IE7 and eariler cannot do cross domain calls, but IE8 can, using a different object than XMLHttpRequest, the one JQuery uses. Could you check if XDomainRequest works?</p> <p><strong>EDIT (2013-08-22)</strong></p> <p>The second link is dead, so I'm writing here some of its information, taken from the <a href="http://web.archive.org/web/20110412071831/http://www.actionmonitor.co.uk/news/6/javascript-data-access-techniques-%28xmlhttprequest-" rel="noreferrer">wayback machine</a>:</p> <blockquote> <p>XDomainRequest Supported: IE8</p> <p>Rather than implement the CORS version of XMLHttpRequest, the IE team have gone with there own propriety object, named XDomainRequest. The usage of XDomainRequest has been simplified from XMLHttpRequest, by having more events thrown (with onload perhaps being the most important).</p> <p>This implementation has a few limitations attached to it. For example, cookies are not sent when using this object, which can be a headache for cookie based sessions on the server side. Also, ContentType can not be set, which poses a problem in ASP.NET and possibly other server side languages (see <a href="http://www.actionmonitor.co.uk/NewsItem.aspx?id=5" rel="noreferrer">http://www.actionmonitor.co.uk/NewsItem.aspx?id=5</a>).</p> <pre><code>var xdr = new XDomainRequest(); xdr.onload = function() { alert("READY"); }; xdr.open("GET", "script.html"); xdr.send(); </code></pre> </blockquote>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload