How to iterate the json data in jquery.
[{\"id\":\"856\",\"name\":\"India\"}, {\"id\":\"1035\",\"name\":\"Chennai\"}, {\"id\":\"1048\",\"name\":\"Delhi\"},
You can use $.each() like this:
$.each(data, function(i, obj) { //use obj.id and obj.name here, for example: alert(obj.name); });