There are multiple <input /> and <textarea> in the <form>,but none have their id or name.

Is it possible to take a snap shot of every thing inside the <form> and render it when need?

link|improve this question

49% accept rate
What do you mean by "render it when needed"? – Doug Neiner Jan 7 '10 at 5:13
Are you trying to submit the form, or do you just want to save the entire structure for later? – zombat Jan 7 '10 at 5:14
@zombat,you are right.And the order of elements may be different when it's shown – user198729 Jan 7 '10 at 5:15
feedback

3 Answers

I'm not sure why you would have a bunch of inputs lacking names and id's, but you could cycle through and generate a name/id for each, and then serialize them using $.serialize();

// Give all a name (e0, e1, e2...)
$(":input").each(function(i){
  $(this).attr("name", "e"+i);
});

// Serialize the data
var data = $("#formid").serialize(); // ex: e0=zip&e1=foo&e2=bar
link|improve this answer
It won't work without id and name. – user198729 Jan 7 '10 at 5:08
In order to work properly serialize requires that form fields have a name attribute. – rahul Jan 7 '10 at 5:11
1  
I've addressed this in my updated solution. – Jonathan Sampson Jan 7 '10 at 5:11
1  
You have to have some way to identify each field. What good are they if they aren't differentiated? – Jonathan Sampson Jan 7 '10 at 5:14
2  
So the order is random, and the fields are anonymous. I'm sorry, but I simply don't see any good in that at all. Can you tell us what it is you're doing? – Jonathan Sampson Jan 7 '10 at 5:19
show 4 more comments
feedback
var formdata = $("#formid").serialize();
link|improve this answer
1  
In order to work properly serialize requires that form fields have a name attribute. – rahul Jan 7 '10 at 5:11
feedback

Updated This answer works for checkboxes, radio buttons, input and textareas. If you wanted select support, just add an additional test/type and parallel setter.

Store the values:

var values = $.map($("form :input"), function(n, i){ 
    if(n.is(':checkbox, :radio'))
      return [n.is(':checked'), "check"];
    else
      return [n.val() , "val"];
};

Restore the values:

$("form :input").each(function(i, el){
   var val = values[i];
   if(val[1] == "check"){
       if(val[0] == true) $(this).attr('checked', 'checked');
       else $(this).removeAttr('checked');
   } else {
       $(this).val(val[1]);
   }
});

This assumes the same order both times. It is (dare I say) impossible to store values without keys and then restore them in a different order, and still have the values match up to the correct fields. You need name or id to differentiate.. period.

link|improve this answer
+1 Another good contribution, Doug. – Jonathan Sampson Jan 7 '10 at 5:21
@Jonathan Well yours has more merit to actually function... a keyless orderless list is well, quite frightening :) Hey... are you hiding from me on GTalk? :D – Doug Neiner Jan 7 '10 at 5:25
For radio and checkbox,what I care is whether it's checked or not.Not its value. – user198729 Jan 7 '10 at 6:11
2  
What difference does it make if it's clicked if it has no value, sort-order, or identification!? – Jonathan Sampson Jan 7 '10 at 6:28
@unknown I updated my answer to give you an idea how to use it for other elements. – Doug Neiner Jan 7 '10 at 6:41
feedback

Your Answer

 
or
required, but never shown

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