I\'m not familiar with jquery. Will you please help me in this? I have a json respone from url but i don\'t know how, can i read key value in jquery.
For ex
You don't have to read json with jquery in general .
Just read it with ease , using JSON.parse() function and without Jquery .
JSON.parse()
var json = '{"result":true,"count":1}', obj = JSON.parse(json); alert(obj.count);