aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax.js
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'bug7018' of http://github.com/csnover/jquery into csnover-bug7018John Resig2010-10-091-2/+4
|\
| * Fix bug #7018.Colin Snover2010-10-061-2/+4
* | Name the try/catch arg to satisfy JSLint - thanks to @rwldrn in 873c28425fb64...jeresig2010-10-091-2/+2
|/
* Make sure we have a fallback when XMLHttpRequest is manually disabled. Fixes ...John Resig2010-09-281-12/+24
* Merge branch 'master' of http://github.com/aakoch/jquery into aakoch-masterjeresig2010-09-271-2/+2
|\
| * Removing the second capture group. After the changes suggested by Jeff Robers...unknown2010-09-241-2/+2
* | Make sure that requests without a body don't set contentType, and a zero-leng...Dave Methvin2010-09-241-4/+5
* | Report correct Error object to handleError. Part of the fix for #6677.Dave Methvin2010-09-241-1/+1
* | Merge branch 'master' of github.com:jquery/jqueryjeresig2010-09-241-2/+2
|\ \
| * | For JSON and script requests, set the scriptCharset before the url so IE won'...dmethvin2010-09-251-1/+1
| * | Added a default quality of `*/*` for content negotiation.Heungsub Lee2010-09-251-1/+1
* | | Use origSettings.context unless it's undefined; for that case use merged sett...Dave Methvin2010-09-241-1/+3
|/ /
* / Serialize keys with empty arrays/object values in jQuery.param(). Fixes #6481.temp012010-09-241-4/+9
|/
* Allow # urls to contain #. Thanks to @alvopass in f9f9ee52e16f37900296e06982a...jeresig2010-09-221-1/+1
* Make sure that #... are trimmed from Ajax request URLs. Fixes #4987.John Resig2010-09-221-0/+2
* Applied the RegExp issues reported by Jeff Robinson here: http://jmrware.com/...jeresig2010-09-221-6/+7
* Scratch that, just punting on Opera and 304s for now - there may not be a goo...John Resig2010-09-211-7/+3
* Use a different workaround for detecting when Opera finds a status 304 page. ...John Resig2010-09-211-3/+5
* Add a flag to verify if a browser supports some form of XHR request. Fixes #7...John Resig2010-09-131-0/+3
* Make sure that jQuery works even when the individual modules are loaded separ...jeresig2010-09-081-0/+4
* Fixing request data param issue. Thanks to mislav for the patch. Fixes #5123.jeresig2010-06-141-1/+1
* Tweak spacing from last commit.jeresig2010-06-141-13/+15
* Fix for http://dev.jquery.com/ticket/6451malsup2010-06-151-10/+18
* Made it so that you no longer need to build jQuery in order to run the test s...jeresig2010-03-231-2/+2
* Moving more properties onto jQuery.ajax, also copy them back to the jQuery ob...jeresig2010-03-021-9/+12
* More changes to get jQuery in line with JSLint.jeresig2010-03-011-126/+130
* We don't want to increment the Ajax counter if there isn't a global event.jeresig2010-03-011-3/+1
* Land some additional tweaks related to running through JSLint.jeresig2010-03-011-1/+1
* Made some code tweaks related to running jQuery through JSLint (thanks to Lor...jeresig2010-03-011-5/+7
* Adding in .bind(name, false), .unbind(name, false) support - an easy way to j...jeresig2010-02-271-2/+2
* No reason to expose the temporary _load method.John Resig2010-02-111-5/+5
* Ok, this should actually fix #6041 :)Ben Alman2010-02-061-2/+2
* Make sure that we don't try to double-encode params using the traditional sty...jeresig2010-02-051-1/+1
* Provided detailed message for JSON parse errors. Fixes #4435.Mike Alup2010-01-251-2/+5
* Make sure original context is maintained and not the deep extended one. Fixes...John Resig2010-01-251-1/+1
* Objects with length properties weren't getting serialized properly by jQuery....John Resig2010-01-251-40/+41
* Use alternative technique for triggering an abort, preventing an exception fr...John Resig2010-01-241-5/+2
* Don't set the context in .load() as it stops the global ajax events from firi...John Resig2010-01-241-3/+4
* Expose the JSON parsing logic. Fixes #5914.jeresig2010-01-231-17/+1
* Centralize the logic for throwing exceptions. Fixes #5913.jeresig2010-01-231-2/+2
* Make sure regular settings object is set as context for all Ajax requests, if...John Resig2010-01-161-1/+1
* Make sure that null params aren't traversed. Fixes #5794.jeresig2010-01-131-1/+1
* Send data if a DELETE Ajax request is done. Fixes #5752.jeresig2010-01-131-1/+1
* Make sure that the xhr object still exists after the abort is called.jeresig2010-01-121-1/+3
* Make sure oldAbort is only called if the xhr object still exists.jeresig2010-01-121-2/+1
* Simplified some of the logic for handling the ajax aborts, making sure that a...jeresig2010-01-121-12/+9
* ajaxStop was getting called too many times, separated some of the logic into ...jeresig2010-01-121-4/+7
* Make sure that Opera fires events after an aborted Ajax attempt. Fixes #5787.jeresig2010-01-121-1/+19
* Make sure we do the malformed JSON check for all both JSON.parse and new Func...jeresig2010-01-111-6/+9
* Make sure the exception has some level of parity with the error from json2.js.jeresig2010-01-071-1/+1