jQuery plugin to retrieve form input values.
Get all values of input elements inside the login form. The result is an hash map. The input name is the key in the hash map.
Disabled input elements will be ignored.
jQuery('form#login').values()If the input element supports multiple values either by an multiple attribute or by a set of checkboxes then the resulting value will be an array.
An exception of this behavior is the file input element. This will return a FileList object if the multiple attribute is present.
jQuery('*').values();jQuery(':input').values();jQuery('.class-name').values();
jQuery('fieldset').values();