var moviereviewtext = "{"title": "Friday the 13th", "year": 1980, "reviews": [{"reviewer": "Pam", "stars": 3, "text": "Pretty good, but could have used more Jason"}, {"reviewer": "Alice", "stars": 4, "text": "The end was good, but a little unsettling"}]}";
var jsonobj = eval("(" + moviereviewtext + ")");
In the above shown there is a variable and we type the data in json format. But what i need is , i have the url of the api and i have to get the json from there and assign it to the variable. How to do it?
evalto parse JSON, it is slow, hard to debug and dangerous. Use the JSON object (in combination with a polyfill if you want to support older browsers). – Quentin Jul 2 '12 at 8:57