I have a JS Array of Objects as follows:
var tables = new Array();
var table = new Object();
table.no=1001;
table.name="Table-1";
tables.push(table);
table.no=1001;
table.name="Table-1";
tables.push(table);
Now I need to send this tables object-array through a hidden field in a form. Can I directly assign the value of hidden field as tables object.