]> source.dussan.org Git - jquery.git/commit
$.fn.formValues;
authorGilles van den Hoven <gilles0181@gmail.com>
Wed, 31 May 2006 11:14:21 +0000 (11:14 +0000)
committerGilles van den Hoven <gilles0181@gmail.com>
Wed, 31 May 2006 11:14:21 +0000 (11:14 +0000)
commitd7856eb24b703d69aa616c0fb5972097e328712f
treef06fd8dd764df58865e68755a74c24ae34d582e6
parent497bfb7909ada30e3410827808bc0c1a0d9843a7
$.fn.formValues;
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');
ajax/ajax.js