Skip to content

Commit 018aff8

Browse files
moo3dmethvin
authored andcommitted
Update key-concepts with XDomainRequest limitation (jquery#572)
* Update key-concepts with XDomainRequest limitation * Update IE's limited support info
1 parent 7efee0e commit 018aff8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

page/ajax/key-concepts.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +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.
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.
75+
76+
Note: Versions of Internet Explorer less than 10 do not support cross-domain AJAX requests.
7577

7678
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.
7779

0 commit comments

Comments
 (0)