Added support for:
authorJohn Resig <jeresig@gmail.com>
Mon, 3 Sep 2007 23:45:14 +0000 (23:45 +0000)
committerJohn Resig <jeresig@gmail.com>
Mon, 3 Sep 2007 23:45:14 +0000 (23:45 +0000)
commita5dbcaf67579b2266b64ffbdd2a328d180f7f64b
treeacd1b43b4b22dae6038cb66ea9ba10a53323ca84
parent456f0fe5985eaad42eba456b9ff710771669607c
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 });
build/test/data/jsonp.php [new file with mode: 0644]
build/test/index.html
src/ajax/ajax.js
src/ajax/ajaxTest.js