How to iterate the json data in jquery.
[{\"id\":\"856\",\"name\":\"India\"}, {\"id\":\"1035\",\"name\":\"Chennai\"}, {\"id\":\"1048\",\"name\":\"Delhi\"},
iterate on all the object's properties with the $.each function. in each iteration you'll get the name/key and the value of the property:
$.each(data, function(key, val) { alert(key+ " *** " + val); });