How can I create a object with a form's fields and values?

like this one:

{
  fields:
   {
      name: 'foo',
      email: 'foo@moo.com',
      comment: 'wqeqwtwqtqwtqwet'     

   }
}

assuming the form looks like this:

<form>
  <input type="text" name="name" value="foo" />
  <input type="text" name="email" value="foo@moo.com" />
  <textarea name="comment">wqeqwtwqtqwtqwet</textarea>
</form>

I need to know how can I do this for any form with a single function, not just a particular form.

link|improve this question

What's the mission? What are you intending to do with this object? – Canuteson Apr 9 '11 at 5:42
i'm trying to create a ajax script that validates forms. and some fields depend on other fields, so I just send the entire object on any input change... – Alex Apr 9 '11 at 5:46
feedback

5 Answers

up vote 7 down vote accepted

You can do this:

var fields = {};
$("#theForm").find(":input").each(function() {
    // The selector will match buttons; if you want to filter
    // them out, check `this.tagName` and `this.type`; see
    // below
    fields[this.name] = $(this).val();
});
var obj = {fields: fields}; // You said you wanted an object with a `fields` property, so...

Beware that forms can have fields with repeated names, and what you're trying to do doesn't support that. Also, the order of fields in HTML forms can be significant. (These are both reasons that serializeArray works the way it does.)

Note that normal HTML practice is to omit disabled fields. If you want to do that, check this.disabled before grabbing the value as well.

link|improve this answer
thank you :P yes I need a fields property because I'm passing other properites too and don't want to confuse them – Alex Apr 9 '11 at 5:59
feedback
var inputs = $("form :input");
var obj = $.map(inputs, function(x, y) {
    return {
        Key: x.name,
        Value: $(x).val()
    };
});
console.log(obj);
link|improve this answer
need to add the other form element types, but this is great – Slappy Apr 9 '11 at 5:41
there are also other elements to consider than input such as select, textarea – gion_13 Apr 9 '11 at 5:41
:input works for all fields including textarea and select. I'm using :input not input. see example jsfiddle.net/ASe4S – Hussein Apr 9 '11 at 5:42
1  
This doesn't produce the structure he asked for. This produces an array of objects, each with a single property based on the name of the field. Very difficult to use, he'd be better off using serializeArray as the property names (name and value) are defined (or, of course, something structured the way he did ask for, although that structure is limited as it doesn't support forms with repeated field names). – T.J. Crowder Apr 9 '11 at 5:48
Check jsfiddle.net/ASe4S/1. Note serializearray does not work with disabled fields. map is a more flexible solution – Hussein Apr 9 '11 at 5:58
show 1 more comment
feedback

As per a comment on the http://api.jquery.com/serializeArray/ page, you can do:

(function( $ ){
    $.fn.serializeJSON=function() {
        var json = {};
        jQuery.map($(this).serializeArray(), function(n, i){
            json[n['name']] = n['value'];
        });
        return json;
    };
})( jQuery );

Then do:

var obj = $('form').serializeJSON();

or if you need it with your fields property, you can modify the function or do this:

var obj = {fields: $('form').serializeJSON()};

Or you can just use serializeArray() if you don't mind that format of output.

link|improve this answer
feedback

jquery has a serialize() function on froms like $('#myform').serialize()

is this what you're looking for?

update: oops, maybe try serializeArray() instead, it should give you an array of name and value.

link|improve this answer
serialize does not give JSON output as OP requested – Hussein Apr 9 '11 at 5:45
@Hussein Thanks, then maybe serializeArray() will work, I've updated my answer. – albb Apr 9 '11 at 5:54
feedback
function formsToObj(){
    var forms = [];
    $('form').each(function(i){
        forms[i] = {};
        $(this).children('input,textarea,select').each(function(){
            forms[i][$(this).attr('name')] = $(this).val();
        });
    });
    return forms;
}

it's a generalized function that creates an object for each form in your page

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.