Here\'s my json:
{\"d\":{\"key1\":\"value1\", \"key2\":\"value2\"}}
Is there any way of accessing the keys and values (in javascript)
Is this what you're looking for?
var data; for (var key in data) { var value = data[key]; alert(key + ", " + value); }