John Resig
|
a5dbcaf675
|
Added support for:
- Cross Domain getScript
$.getScript("http://foo.com/script.js");
- JSONP
$.ajax({ url: "script.js", type: "jsonp" });
$.getJSON("script.js?callback=?");
- Cross Domain JSONP/getJSON
$.getJSON("http://foo.com/script.js?callback=?");
- No-cache Ajax Requests
$.ajax({ url: "test.html", cache: false });
|
2007-09-03 23:45:14 +00:00 |
|