4

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
asked Dec 7, 2009 at 11:13

2 Answers 2

11

This will do:

$('#firstname,#lastname,#password').map(function () { 
 return this.value; 
}).get();
answered Dec 7, 2009 at 11:15
Sign up to request clarification or add additional context in comments.

1 Comment

There is no need to use the .val() method here, return this.value; will work just fine.
1

I made tiniy plugin for that case:

 jQuery.fn.inputs2obj=function (){
 var out={};
 var arr=this.filter(':input').each(function () {
 e=$(this);
 out[e.attr('name')]=e.val();
 }).get();
 return out;
 }

Usage example:

inputs=$('form').find(':input').inputs2obj();
Ivan
16.2k18 gold badges64 silver badges101 bronze badges
answered Jun 25, 2011 at 18:22

Comments

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.