aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax.js
Commit message (Expand)AuthorAgeFilesLines
* 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
* Make sure that a parsererror is thrown whenever malformed JSON comes back fro...jeresig2010-01-071-6/+12
* Back out the try/catch logic from around JSON.parse. We should always try to ...jeresig2010-01-071-3/+3
* There's enough logic going on in jQuery.ajaxSettings.xhr to warrant splitting...jeresig2010-01-071-6/+5
* Added in support for content-type sniffing for scripts. Fixes #5718.jeresig2010-01-061-6/+4
* Detect JSON Ajax requests by the response content-type (like is done with XML...Rick Waldron2010-01-051-1/+2
* Try to use the native JSON parser in all cases and fallback to the old techni...jeresig2010-01-051-2/+4
* Make sure that the ActiveX exception is caught if it's unable to be loaded. F...jeresig2010-01-051-3/+12
* Try to use XMLHttpRequest in more cases in IE 7. Thanks to Matt Kruse and Sam...jeresig2010-01-051-4/+5
* Rather than declaring empty anonymous functions all around, introduce and use...jeresig2009-12-311-2/+2
* Experiment switching to using onreadystatechange rather than a setInterval fo...jeresig2009-12-301-29/+16
* Moved jQuery.param "traditional" flag into jQuery.ajaxSettings, can now be ov...Ben Alman2009-12-231-9/+12
* Standardize on using double-quotes for string literals.jeresig2009-12-211-1/+1
* Made a number of spacing changes to bring the code more-inline with the jQuer...jeresig2009-12-211-23/+27
* Ignore case of script tags to make sure they're removed. Fixes #5668. Thanks ...Dave Methvin2009-12-181-1/+1
* Add new html5 input types to list of serializable types. Older browers handle...Dave Methvin2009-12-181-1/+1
* Default callbackContext to the $.extended ajax options for 1.3.2 compatibilit...Dave Methvin2009-12-181-1/+1
* Reorganized param code slightly to once again define buildParams as a named f...Ben Alman2009-12-181-35/+34
* Further modified jQuery 1.4 .param() method to serialize arrays containing no...Ben Alman2009-12-181-30/+39