jquery decode json response code example
Example 1: parse json jquery
var obj = JSON.parse('{ "name":"John", "age":30, "city":"New York"}');
Example 2: json_decode jquery
var obj = jQuery.parseJSON( '{ "name": "John" }' );
alert( obj.name === "John" );