I have a group of inputs and I want to get the value of each one in array form or in any way that you will suggest. I am not very good at arrays.
$(elemnt).each(
If all your inputs share the same class say "class1" then you can select all such inputs using this
var inputs = $(".class1");
Then you can iterate over the inputs any way you want.
for(var i = 0; i < inputs.length; i++){ alert($(inputs[i]).val()); }