Skip to content

Commit 0ace224

Browse files
committed
Updated IEs limited support info
Removed direct references to XDR and also the link to jQuery ticket, which is now a dead link.
1 parent cc73ec3 commit 0ace224

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

page/ajax/key-concepts.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ $.get( "foo.php", function( response ) {
7171

7272
### Same-Origin Policy and JSONP
7373

74-
In general, Ajax requests are limited to the same protocol (http or https), the same port, and the same domain as the page making the request. This limitation does not apply to scripts that are loaded via jQuery's Ajax methods, except for Internet Explorer 8 and 9.
74+
In general, Ajax requests are limited to the same protocol (http or https), the same port, and the same domain as the page making the request. This limitation does not apply to scripts that are loaded via jQuery's Ajax methods.
7575

76-
Since Internet Explorer versions 8 and 9 uses [XDomainRequest](http://msdn.microsoft.com/en-us/library/ie/cc288060(v=vs.85).aspx), which has only limited support to XHR2 implementation. Further reading of [this ticket](http://bugs.jquery.com/ticket/8283) would help understand the relationship between XDomainRequest and jQuery.
76+
Note: Versions of Internet Explorer less than 10 do not support cross-domain AJAX requests.
7777

7878
The other exception is requests targeted at a JSONP service on another domain. In the case of JSONP, the provider of the service has agreed to respond to your request with a script that can be loaded into the page using a `<script>` tag, thus avoiding the same-origin limitation; that script will include the data you requested, wrapped in a callback function you provide.
7979

0 commit comments

Comments
 (0)