I need to form a string with the all values input fields within a div layer - using jquery
<div id="selection">
<input class="field" id="1" type="hidden" value="A"/>
<input class="field" id="2" type="hidden" value="B"/>
<input class="field" id="3" type="hidden" value="C"/>
<input class="field" id="4" type="hidden" value="D"/>
</div>
<input type="button" id="button" value="generate"/>
in this form:
id[1]=val[A]&id[2]=val[b]...so on
jquery:
$(function() {
$('#button').click(function() {
//function goes here...
});
});
If you use
name
instead of (or in addition to)id
:you can use
serialize
:which gives you
If you really want to have the
id[x]
structure, you can give the elements the namesid[1]
,id[2]
etc.Edit: Oh, somehow I overlooked that you want
val[x]
as well. This would not be possible withserialize
, only if you really putval[x]
as value in the fields. But why do you need such an obfuscated structure?Btw. you are missing
type="button"
at your button.