Question

I have inputs like this:

<input name="val[test]" value="...">

I am trying to get all values with a jQuery's serializeArray, but it wont work.

I am doing:

var test = $('#myForm').serializeArray();
debug(test.val[test]);

Its not working, why?

Was it helpful?

Solution

var test = $('#myForm').serializeArray();
$.each(test, function(index, val) {
  console.log( val.test );
});

Note

serializeArray() give the output like:

[
 {
   test: 1
 },
 {
   test: 2
 },
 ...
]

OTHER TIPS

Use this instead:

console.log( test[ index ] );
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top