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
with parse.JSON
parse.JSON
var obj = jQuery.parseJSON( '{ "name": "John" }' ); alert( obj.name === "John" );