If the JSON string comes from the server, you can try JSONP . JSON is parsed initially in the browser (quickly) upon loading and without any library.
for example: if you have the answer {"name":"Peter"}
The JSONP answer would be something like this: yourFunction({"name":"Peter"})
yourFunction should be a globally defined function on the page that will receive the call, for example:
function yourFunction(json){
source share