I have multiple input fields.
<input type='text' size='10' name='firstname' id='firstname' />
<input type='text' size='20' name='lastname' id='lastname' />
<input type='password' size='5' name='password' id='password' />
I want to get all their values into a single array with jQuery. Like this one.
1 => 'Barack',
2 => 'Obama',
3 => '123456'
Existing method val() returns value from first match.
$('#firstname,#lastname,#password').val(); //returns only first name
This will do:
$('#firstname,#lastname,#password').map(function () {
return this.value;
}).get();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With