I have this HTML:
And I create an object array from it lik
You can either loop through, as @Tom has...or if you're accessing more than one, be a bit more efficient and loop once, creating an object like this:
var dataArray = $("#myform").serializeArray(),
len = dataArray.length,
dataObj = {};
for (i=0; i
Then you can access it like you want, for example:
alert(dataObj['title']); //or alert(dataObj.title);
You can test it out here.