aboutsummaryrefslogtreecommitdiffstats
path: root/src/ajax
Commit message (Collapse)AuthorAgeFilesLines
...
* Got some XHR tests to run, still some hanging threads (need to investigate). ↵John Resig2007-07-091-31/+31
| | | | Started moving some Ajax tests away from using PHP (more portable this way). Fixed a number of XHR env bugs.
* Fixed an issue with JSON data in packed scripts. (Bug #1298)John Resig2007-06-161-1/+1
|
* Minor cleanupJörn Zaefferer2007-04-251-3/+0
|
* Fix for #1132Jörn Zaefferer2007-04-181-4/+0
|
* Remove XMLHttpRequest shadowing, instead decide at runtime whether to create ↵Jörn Zaefferer2007-04-031-8/+3
| | | | an ActiveXObject or the XMLHttpRequest, potentially fixing #963
* Added test for #970Jörn Zaefferer2007-03-251-0/+13
|
* Fixed docs for ajax timouet to mention that its in millisecondsJörn Zaefferer2007-03-251-3/+3
|
* Fix for #953, use always GET for $.getJörn Zaefferer2007-03-171-0/+1
|
* Backported wiki changes from http://docs.jquery.com/API/1.1.1/AjaxJörn Zaefferer2007-02-271-14/+24
|
* Fix for #991Jörn Zaefferer2007-02-221-8/+14
|
* Rolling back fix for #914 due to firefox double evaling scriptsBrandon Aaron2007-02-171-1/+1
|
* Fix for #914.Brandon Aaron2007-02-071-1/+1
|
* Fix for #884Jörn Zaefferer2007-01-311-1/+4
|
* Fixed doing $.post() without any params.John Resig2007-01-221-0/+5
|
* Added a fix for an undefined param being passed to a load.John Resig2007-01-201-1/+1
|
* Simplified check for XMLHttpRequest (saving a few bytes) and fixed load()-testJörn Zaefferer2007-01-172-3/+3
|
* Fix bug #814.Mike Alsup2007-01-161-1/+1
|
* Fixed two FF JS warningsJörn Zaefferer2007-01-142-2/+3
|
* Converted a lot of for loops to use jQuery.each() instead.John Resig2007-01-141-4/+6
|
* Added back in the .load() fix.John Resig2007-01-141-1/+1
|
* Merged in some wiki fixes into the main docs.John Resig2007-01-141-3/+3
|
* Added in jQuery.isFunction().John Resig2007-01-141-3/+3
|
* Touched up the code a little bit, saving some bytes.John Resig2007-01-141-3/+3
|
* Added a fix for <script>s getting executed twice when .load()ed.John Resig2007-01-101-1/+1
|
* Fixed a bug with $("body") in dynamic documents, refactored $(...), stopped ↵John Resig2007-01-081-0/+4
| | | | the test suite from trying to run Ajax tests locally.
* Updated param method to encode name as well as value (per spec: ↵Mike Alsup2007-01-072-6/+6
| | | | http://www.w3.org/TR/html4/interact/forms.html#h-17.13.4.1)
* Improved the categories of a bunch of docs, upped the version to 1.1.John Resig2007-01-071-18/+18
|
* Cleaned up some spacing and braces.John Resig2007-01-061-39/+36
|
* Converted instances of new function(){ ... } to use jQuery.each(...) ↵John Resig2007-01-061-10/+4
| | | | instead. Also, removed unnecessary documentation for trigger functions (.mouseup()!?).
* Changed "Hash" to "Map" in docsJörn Zaefferer2007-01-041-8/+11
|
* added evalScripts testMike Alsup2007-01-021-0/+14
|
* Added note for IE's behaviour of stripping script tags when there are no ↵Jörn Zaefferer2007-01-011-0/+1
| | | | chracters in front of it (see #746)
* Modified tests to show #746Jörn Zaefferer2006-12-311-1/+12
|
* Improved Mikes hack to ease testing against IE cacheJörn Zaefferer2006-12-311-30/+34
|
* add time to test.html request url using new Date().getTime()Mike Alsup2006-12-311-2/+2
|
* Fix for #534Jörn Zaefferer2006-12-292-1/+6
|
* Documentation for $.ajaxSetupJörn Zaefferer2006-12-221-5/+23
|
* Implemented global ajax settings - no documentation yetJörn Zaefferer2006-12-222-24/+36
|
* Fixed typoJörn Zaefferer2006-12-211-1/+1
|
* A few corrections to the testsuite to imrove the failure testingJörn Zaefferer2006-12-212-13/+21
|
* Added note to load() to avoid using it to load scripts (#456)Jörn Zaefferer2006-12-211-0/+2
|
* Implemented a better error handling for ajax requests. Exceptions caused by ↵Jörn Zaefferer2006-12-212-52/+58
| | | | dropping connections are now handled, too.
* Added test for sync requests with callbacks (#534)Jörn Zaefferer2006-12-211-0/+6
|
* Fixed wheather-whether typo - Thanks ErikJörn Zaefferer2006-12-201-1/+1
|
* Fixed synchrnous requests, improved AJAX inline documentationJörn Zaefferer2006-12-152-91/+126
|
* Fixed docs for $.ajax' processData optionJörn Zaefferer2006-12-131-4/+4
|
* Fixed #471Jörn Zaefferer2006-12-112-22/+58
|
* Renamed $.ajax's "before"-option to "beforeSend" to prevent conflict with ↵Jörn Zaefferer2006-12-052-7/+7
| | | | form plugin - may be a good convention to use beforeXXX and afterXXX everytime for callbacks...
* Renamed preprocess to before, for consistency with form pluginJörn Zaefferer2006-12-042-5/+5
|
* Simplified XMLHttpRequest shadow (tested on 5.5, 6 and 7); Introduced ↵Jörn Zaefferer2006-12-042-5/+27
| | | | preprocess callback (#384) - IE seems to fail to send the correct headers