How do I parse this? I'm working with WordPress and Jquery.
{
"MyCustomOutput": [
{
"id": "2",
"name": "This is the name of the custom output",
"version": "1.00",
"description": "This is the Description",
"changelog": "This is the change log history....",
"updated": "1261274072"
}
]
}
I tried something like:
var d = JSON.parse(data);
$("#version").html(data);
$("#version").html(d.MyCustomOutput.version);
But I have no idea what I'm doing with Jquery... Or javascript :P