I have a form with many input fields.
When I catch the submit form event with jQuery, is it possible to get all the input fields of that form in an associative array?
|
I have a form with many input fields. When I catch the submit form event with jQuery, is it possible to get all the input fields of that form in an associative array? |
|||||||||||||||
|
Thanks to the tip from Simon_Weaver, here is another way you could do it, using
Note that this snippet will fail on It appears that the new HTML 5 form inputs don't work with |
|||||||||||||||||||
|
|
Late to the party on this question, but this even easier:
|
|||||||||||||||
|
|
The jquery.form plugin may help with what others are looking for that end up on this question. I'm not sure if it directly does what you want or not. There is also the serializeArray function. |
|||
The elements variable will contain all the inputs, selects, textareas and fieldsets within the form. |
|||
|
|
|
Had a similar issue with a slight twist and I thought I'd throw this out. I have a callback function that gets the form so I had a form object already and couldn't easy variants on
Its similar but not identical situation, but I found this thread very useful and thought I'd tuck this on the end and hope someone else found it useful. |
||||
|
|
|
Sometimes I find getting one at a time is more useful. For that, there's this:
|
|||
|
|
|
Don't forget the checkboxes and radio buttons -
|
|||
|
|
|
Associative? Not without some work, but you can use generic selectors:
|
||||
|
|
I had the same problem and solved it in a different way.
It returns the value of all input fields. You could change the |
|||
|
|
|
jQuery's
|
|||
|
|
|
When I needed to do an ajax call with all the form fields, I had problems with the :input selector returning all checkboxes whether or not they were checked. I added a new selector to just get the submit-able form elements:
usage:
I've not tested it with multiple select boxes yet though but It works for getting all the form fields in the way a standard submit would. I used this when customising the product options on an OpenCart site to include checkboxes and text fields as well as the standard select box type. |
|||
|
|
|
Same solution as given by nickf, but with array input names taken into account eg
|
||||
|
|
|
serialize() is the best method. @ Christopher Parker say that Nickf's anwser accomplishes more, however it does not take into account that the form may contain textarea and select menus. It is far better to use serialize() and then manipulate that as you need to. Data from serialize() can be used in either an Ajax post or get, so there is no issue there. |
|||
|
|
|
If you need to get multiple values from inputs and you're using []'s to define the inputs with multiple values, you can use the following:
|
|||
|
|