aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax.js
Commit message (Collapse)AuthorAgeFilesLines
* Added code to remove the script tag on successful jsonp calls.David Serduke2007-12-171-0/+2
|
* The extra & was getting gobbled, oops.John Resig2007-12-171-2/+2
|
* Added a fix for bug #2020 - if you want to do data: {callback: "?"}, do ↵John Resig2007-12-171-1/+1
| | | | jsonp: "callback" instead.
* Fixed #1781 for warnings created on load by FF javascript.options.strict == ↵David Serduke2007-12-161-4/+4
| | | | true.
* Added feature #1934 by allowing script.charset to be set through an optional ↵David Serduke2007-12-151-0/+2
| | | | 'scriptCharset' ajax option.
* Fixed #2046 by forcing the dataType to 'html' in the .load() function.David Serduke2007-12-141-0/+1
|
* Added an extra try block to handle FF 3 x-domain requests. (Bug #1557)John Resig2007-12-141-9/+12
|
* Fixed #1750 by adding a url that starts with "//" and is a dataType "script" ↵David Serduke2007-12-121-1/+1
| | | | will now use a cross domain load the same as urls that start with "http".
* Fix #1987 by only doing remote <script> type ajax with GET requests. All ↵David Serduke2007-12-111-2/+2
| | | | other types will be passed on to XMLHttpRequest.
* For fix #1999 changed the RegExp to be non-greedy. Thanks emartin24.David Serduke2007-12-041-1/+1
|
* Fixed #1999 by replacing the 'no-cache' parameter if it is there instead of ↵David Serduke2007-12-041-2/+7
| | | | just appending.
* Removed comments and code related to Safari being unable to do a sync global ↵David Serduke2007-11-301-4/+1
| | | | eval. With the new globalEval() code that should no longer be a problem.
* Fixed #1557, although it doesn't appear to be just an FF3 problem. In this ↵David Serduke2007-11-291-1/+1
| | | | case, $.getJSON() wasn't working from a remote host. I went ahead and added a unit test then added the s.dataType == "json" test for a remote <script> load. The said that json was allowed but the dataType check was missing. This appears to have fixed the bug across all browsers.
* Fixed #1450 by returning 1223 as success. Couldn't normalize the status ↵David Serduke2007-11-291-2/+3
| | | | since jquery uses the actual xmlhttprequest object.
* Fix #1905 bug where in IE the use of RegExp.test() was failing and needed to ↵David Serduke2007-11-161-1/+1
| | | | be replaced with String.match().
* Fix for bug #1638, where a non-string data could break an Ajax request.John Resig2007-10-181-2/+2
|
* Another fix for bug #1584, ajaxStop would not be called for a cross-domain ↵John Resig2007-10-171-1/+1
| | | | request if a handler was not provided.
* Added a fix for bug #1580, where the query string was appended to the POST ↵John Resig2007-09-151-12/+12
| | | | data, instead of being left alone.
* Bug #1584, ajaxStop/complete calls weren't called for JSONP requests.John Resig2007-09-151-0/+1
|
* Fix for bug #1600 - multiple selects were being serialized incorrectly.John Resig2007-09-151-1/+1
|
* Fixed some line ending issues.John Resig2007-09-091-5/+8
|
* Errors were occuring with getScript, if you called it too early.John Resig2007-09-091-2/+3
|
* Reorganzing the jQuery source (first phase).John Resig2007-09-081-0/+462