parsejson jquery 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" );
Example 3: js string to json
var obj = JSON.parse("{no:'u',my:'sql'}");//returnes {no:'u',my:'sql'}