I have a JSON output like the following:
JSON
[\"City1\",\"City2\",\"City3\"]
I want to get each of the city names, how can i do th
var dataArray = []; var obj = jQuery.parseJSON(response); for( key in obj ) dataArray.push([key.toString(), obj [key]]); };