I have some JSON returned to the browser like this \"product\":
{ \"Title\": \"School Bag\", \"Image\": \"/images/school-bag.jpg\" }
I want
For converting JSON to an object you can use window.JSON.parse(jsonText) in Mozilla (check Chrome and Opera, I don't know how it works there.)
window.JSON.parse(jsonText)
In Internet Explorer you can use (new Function("return " + jsonText))(), but you should check the JSON for non-valid symbols, google it.
(new Function("return " + jsonText))()