Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Added a fix for <script>s getting executed twice when .load()ed. | John Resig | 2007-01-10 | 1 | -1/+1 |
| | |||||
* | Updated param method to encode name as well as value (per spec: ↵ | Mike Alsup | 2007-01-07 | 1 | -3/+3 |
| | | | | 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 Resig | 2007-01-07 | 1 | -18/+18 |
| | |||||
* | Cleaned up some spacing and braces. | John Resig | 2007-01-06 | 1 | -39/+36 |
| | |||||
* | Converted instances of new function(){ ... } to use jQuery.each(...) ↵ | John Resig | 2007-01-06 | 1 | -10/+4 |
| | | | | instead. Also, removed unnecessary documentation for trigger functions (.mouseup()!?). | ||||
* | Changed "Hash" to "Map" in docs | Jörn Zaefferer | 2007-01-04 | 1 | -8/+11 |
| | |||||
* | Added note for IE's behaviour of stripping script tags when there are no ↵ | Jörn Zaefferer | 2007-01-01 | 1 | -0/+1 |
| | | | | chracters in front of it (see #746) | ||||
* | Fix for #534 | Jörn Zaefferer | 2006-12-29 | 1 | -0/+4 |
| | |||||
* | Documentation for $.ajaxSetup | Jörn Zaefferer | 2006-12-22 | 1 | -5/+23 |
| | |||||
* | Implemented global ajax settings - no documentation yet | Jörn Zaefferer | 2006-12-22 | 1 | -23/+21 |
| | |||||
* | Fixed typo | Jörn Zaefferer | 2006-12-21 | 1 | -1/+1 |
| | |||||
* | A few corrections to the testsuite to imrove the failure testing | Jörn Zaefferer | 2006-12-21 | 1 | -7/+15 |
| | |||||
* | Added note to load() to avoid using it to load scripts (#456) | Jörn Zaefferer | 2006-12-21 | 1 | -0/+2 |
| | |||||
* | Implemented a better error handling for ajax requests. Exceptions caused by ↵ | Jörn Zaefferer | 2006-12-21 | 1 | -51/+55 |
| | | | | dropping connections are now handled, too. | ||||
* | Fixed wheather-whether typo - Thanks Erik | Jörn Zaefferer | 2006-12-20 | 1 | -1/+1 |
| | |||||
* | Fixed synchrnous requests, improved AJAX inline documentation | Jörn Zaefferer | 2006-12-15 | 1 | -91/+105 |
| | |||||
* | Fixed docs for $.ajax' processData option | Jörn Zaefferer | 2006-12-13 | 1 | -4/+4 |
| | |||||
* | Fixed #471 | Jörn Zaefferer | 2006-12-11 | 1 | -8/+36 |
| | |||||
* | Renamed $.ajax's "before"-option to "beforeSend" to prevent conflict with ↵ | Jörn Zaefferer | 2006-12-05 | 1 | -4/+4 |
| | | | | form plugin - may be a good convention to use beforeXXX and afterXXX everytime for callbacks... | ||||
* | Renamed preprocess to before, for consistency with form plugin | Jörn Zaefferer | 2006-12-04 | 1 | -4/+4 |
| | |||||
* | Simplified XMLHttpRequest shadow (tested on 5.5, 6 and 7); Introduced ↵ | Jörn Zaefferer | 2006-12-04 | 1 | -5/+10 |
| | | | | preprocess callback (#384) - IE seems to fail to send the correct headers | ||||
* | Fixed jQuery.eval (or rather, jQuery.globalEval to avoid problems with FF) | Jörn Zaefferer | 2006-12-02 | 1 | -4/+12 |
| | |||||
* | Fixed serializing arrays (bug #448) | Jörn Zaefferer | 2006-11-30 | 1 | -3/+3 |
| | |||||
* | Fixed docs for $.ajax for data option | Jörn Zaefferer | 2006-11-28 | 1 | -1/+1 |
| | |||||
* | Another attempt to fix the getScript problem | Jörn Zaefferer | 2006-11-21 | 1 | -11/+10 |
| | |||||
* | Fixed typo in comment | Jörn Zaefferer | 2006-11-21 | 1 | -1/+1 |
| | |||||
* | Better fix for #407 issue | Jörn Zaefferer | 2006-11-21 | 1 | -2/+9 |
| | |||||
* | Fix for bug #407, yet to be tested | Jörn Zaefferer | 2006-11-20 | 1 | -5/+13 |
| | |||||
* | Testsuite 2.0 | Jörn Zaefferer | 2006-11-18 | 1 | -220/+0 |
| | |||||
* | Heavily improved documentation for $.ajax, but may still need some fixes | Jörn Zaefferer | 2006-11-18 | 1 | -7/+22 |
| | |||||
* | Return XMLHttpRequest from $.ajax() to allow aborting etc. | Jörn Zaefferer | 2006-11-17 | 1 | -1/+8 |
| | |||||
* | Added async option (ticket #367) | Jörn Zaefferer | 2006-11-17 | 1 | -2/+6 |
| | |||||
* | Fixed an issue with getJSON (type was not correctly passed on when data was ↵ | Jörn Zaefferer | 2006-11-17 | 1 | -11/+18 |
| | | | | ommited); Added more options to $.ajax to provide more flexibility (bug #371) | ||||
* | Missing '}' in jQuery.param method in ajax.js | Brandon Aaron | 2006-11-16 | 1 | -0/+1 |
| | |||||
* | if one value of key/value pairs is array then treat each array value in part | Stefan Petre | 2006-11-16 | 1 | -2/+9 |
| | |||||
* | Fixed a missing semicolon | Jörn Zaefferer | 2006-11-13 | 1 | -2/+2 |
| | |||||
* | Fixed doc for $.ajax data option | Jörn Zaefferer | 2006-11-11 | 1 | -1/+2 |
| | |||||
* | Fixed docs for load; Added the response as third paramter for load callback ↵ | Jörn Zaefferer | 2006-11-11 | 1 | -4/+4 |
| | | | | (partly fixing bug #337) | ||||
* | Refactored all logic from $.get and $.post into $.ajax, now they are only ↵ | Jörn Zaefferer | 2006-11-11 | 1 | -35/+33 |
| | | | | convenience delegators | ||||
* | Modified test for load(); added fix for trigger, where it modifies data ↵ | Jörn Zaefferer | 2006-11-09 | 1 | -1/+3 |
| | | | | passed to it, which causes ugly side-effects | ||||
* | Added pseudo-fix for #164; fixed some tests that failed in IE | Jörn Zaefferer | 2006-11-07 | 1 | -4/+4 |
| | |||||
* | Changed return type to undefined for certain functions, as discussed. | Klaus Hartl | 2006-11-04 | 1 | -67/+67 |
| | |||||
* | Refactored ajax module: Dropped internal arguments from ajax(); Modified ↵ | Jörn Zaefferer | 2006-11-03 | 1 | -45/+73 |
| | | | | testsuite to improve display | ||||
* | Another $ bites the dust. Should be all of them now. | Brandon Aaron | 2006-11-01 | 1 | -1/+1 |
| | |||||
* | Fixed all warnings generated when javascript.options.strict is enabled in ↵ | John Resig | 2006-10-15 | 1 | -1/+1 |
| | | | | Firefox about:config. | ||||
* | Added test for #174; Modified failing (IE) tests for find | Jörn Zaefferer | 2006-10-13 | 1 | -0/+10 |
| | |||||
* | Fix for #265: Initialize defaults for global and timeout properly when ↵ | Jörn Zaefferer | 2006-10-13 | 1 | -0/+2 |
| | | | | $.ajax is called internally (argument list instead of hash) | ||||
* | Fixed #216, added several tests for ajax module and fixed more stuff ↵ | Jörn Zaefferer | 2006-10-13 | 1 | -12/+58 |
| | | | | revealed by those; Reverted Johns change for each (changeset 433), caused way too much trouble | ||||
* | Added 2 of 3 fixes of #164 | Jörn Zaefferer | 2006-10-11 | 1 | -0/+12 |
| | |||||
* | Fixed second test for load() | Jörn Zaefferer | 2006-10-09 | 1 | -2/+2 |
| |