I am using a PHP script to create JSON data. It looks like this:
{\"Id\":0}
Now if I put that into a file and then load it using ajax it\'s
use jquery's parseJSON e.g.
success: function(data) { data = jQuery.parseJSON(data); $('#result').html('#Id=' + data.Id); }