aboutsummaryrefslogtreecommitdiffstats
path: root/ajax/ajax.js
Commit message (Collapse)AuthorAgeFilesLines
* Moved all the jQuery source to the new src directory.John Resig2006-08-131-229/+0
|
* Applied patch provided by Taku Sano fixing the compression errors.John Resig2006-08-131-2/+3
|
* Added some memory leak protection.John Resig2006-07-171-1/+5
|
* Minor bug fixes.John Resig2006-07-171-1/+1
|
* More bug fixes and added documentation - passes the test suite now.John Resig2006-07-101-137/+151
|
* Help to squelch unnecessary Mozilla exceptions.John Resig2006-07-041-3/+6
|
* Added in a couple AJAX fixes for status and content-type.John Resig2006-07-041-4/+5
|
* Fix jQuery.httpData to allow forcing of text dataMichael Geary2006-07-021-4/+6
|
* Made some tweaks to the different AJAX callbacks.John Resig2006-06-221-17/+13
|
* Updated global namespaces.John Resig2006-06-221-24/+24
|
* Massive update, bugs, filesize, new features - getting ready for 1.0.John Resig2006-06-221-22/+18
|
* The AJAX plugin is now fully documented, along with some bug fixes and new ↵John Resig2006-06-191-307/+178
| | | | features.
* Improved the robustness of the response codes based upon what's in Dojo. ↵John Resig2006-06-181-1/+2
| | | | (Ticket #14)
* Added onSuccess and onError callbacks for the $.xml() function.John Resig2006-06-161-1/+18
|
* changed $.execute back to eval()Gilles van den Hoven2006-06-091-2/+2
|
* removed $.fn.changer by Marc's request and changed back the responseText in ↵Gilles van den Hoven2006-06-091-20/+3
| | | | $.xml
* Bugs fixxed:Gilles van den Hoven2006-06-081-102/+194
| | | | | | | | | - I've renamed $.eval to $.execute (since $.$$exec is allready there?) - Commited sam's form function - Removed $.fn.formValues() - Removed $.fn.update() - Removed $.fn.serialize()
* Removed unnecessary instances of === or !==.John Resig2006-06-051-1/+1
|
* $.eval bug ==> added ==> || ""Gilles van den Hoven2006-06-031-2/+2
|
* Some errors in the formvalues() functionGilles van den Hoven2006-06-021-13/+16
|
* (no commit message)Gilles van den Hoven2006-06-011-9/+18
|
* see mailinglistGilles van den Hoven2006-05-311-6/+12
|
* $.fn.formValues;Gilles van den Hoven2006-05-311-33/+79
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Gets form values and creates a key=>value array of the found values. What's new? - Only does this for ENABLED elements. - Keeps the same order of the form. - Optionally adds the button which is clicked (marks that name with an 'x' in the list) example: $('#frmLogin').formValues('oButton'); $.fn.update (PREVIOUSLY: $.update, so beware!!!!) Calls sURL with sAction (method) and sends the aValues. Puts the results from that call in the jQuery object and calls fCallback if provided. What's new? - Renamed $.update to $.fn.update, since it is more obvious to call $('someJQueryObject').update(...) then $.update($('someJQueryObject'), ...). It's also more jQuery-ish - Added the method you want to use, since i used post before, now you can select between either GET or POST. example: $('someJQueryObject').update('sURL', 'sAction', 'aValues', 'fCallback'); $.fn.serialize Calls the form's action with the correct method and the serialized values. Optionally adds the button which is clicked if you provide it. When there are results, the fCallback function is called. What's new? - The entire function example: $('someForm').serialize('sButton', 'fCallback');
* Rewrote $.xml a bit, cause the loading message got stuck (didn't hide) after ↵Gilles van den Hoven2006-05-201-27/+21
| | | | fast ajax calls
* Fixed some bugs in the serialization code, it seems to work now.John Resig2006-05-171-24/+16
|
* Fixxed the form serialize function as seen on the mailing list.Gilles van den Hoven2006-05-171-10/+28
|
* Not only does it pass the default JSLint settings, it also no longer leaks ↵John Resig2006-05-171-3/+3
| | | | *any* global variables!
* jQuery is now JSLint (jslint.com) compatible, save for the eval stuff. Can't ↵John Resig2006-05-161-23/+29
| | | | | | | there b e legitamite uses for eval?
* forgot to remove the old serialize functionGilles van den Hoven2006-05-161-16/+0
|
* Added my bugfixes and removed the triggerAjax and handleAjax functions since ↵Gilles van den Hoven2006-05-161-19/+87
| | | | they are no longer needed afaik :)
* Added support for global AJAX callbacks and Form Serialization.John Resig2006-03-271-4/+37
|
* Fixed more formatting/tab problems.John Resig2006-03-231-53/+54
|
* Inital Import.John Resig2006-03-221-0/+88