aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax.js
Commit message (Expand)AuthorAgeFilesLines
* 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
* Make sure that an actual timeout is triggered (and not accidentally triggered...John Resig2009-12-091-1/+1
* Added in support for $.ajax jsonpCallback (allowing you to specify the name o...John Resig2009-12-061-2/+2
* Adding in an extra check, per the comments in 25b0ba9f9612583033b902a0e403454...jeresig2009-12-051-1/+1
* Allow the user to explicitly set a content-type header even when there's no d...John Resig2009-12-041-5/+3
* added curly braces around all if/else statementsKarl Swedberg2009-11-281-10/+10
* Disable the X-Requested-With header to avoid preflighting remote POST request...John Resig2009-11-251-5/+7
* Fixed spacing on the modified Ajax code.John Resig2009-11-251-8/+8
* Added a check to make sure that a load request isn't done if the element does...John Resig2009-11-111-0/+4
* Pass in the XHR object as the third argument to the success callback (which h...John Resig2009-11-111-1/+1
* jQuery.ajax modified the passed-in object only to help test the code - this s...John Resig2009-11-071-1/+1
* The complete event wasn't getting called on local file 404s. Thanks to 'mrspe...John Resig2009-11-071-0/+2
* Consistant splits using " " instead of ","visionmedia2009-10-271-1/+1
* Getting $.param working well; Patch by ben_almanYehuda Katz2009-09-171-24/+37
* jquery ajax: addition for #2452. Wasn't working correctly in some cases.Ariel Flesler2009-09-151-2/+2
* jquery ajax: closes #2452. get() and post() weren't shifting all arguments co...Ariel Flesler2009-09-151-1/+4
* jquery ajax: closes #4994. Adding 'context' setting to $.ajaxAriel Flesler2009-09-151-14/+18
* fix for #5017Brandon Aaron2009-09-141-1/+1
* jquery ajax: Misc renameAriel Flesler2009-09-141-3/+3
* Adds nested param serialization; Closes #4201 (by merbjedi)Yehuda Katz2009-09-021-11/+16
* If the XHR object no longer exists assume that the request was aborted.John Resig2009-08-261-1/+1
* Make sure payload is sent for PUT requests. (Thanks alx). Fixes #4971.John Resig2009-07-271-1/+1
* Make sure that the script is removed only if it's actually in the page still....John Resig2009-07-221-1/+3