I have a JSON data like below
{
"computer": [
{
"product_id": "6",
},
{
"product_id": "10",
}
],
"Stationery": [
{
"product_id": "11",
}
]
}
I would like to iterate through these type of JSON data in jQuery/javascript. How can I do that ??
Thanks
JSON.stringify. But wait... jQuery should already done that for you! – Alvin Wong Nov 20 '12 at 11:52