I've got a JSON response in the format of..
{"item":{"cid":544,"id":3023,"name":"names"},"success":1,"msg":""}
The response is stored as s. When I do...
var obj = eval('('+s+')');
obj = undefined. therefore obj.name = undefined
I want to get id and name from this JSON response. Why is what I'm doing not working? How do I "make it work"?