I am trying to loop through JSON data
{"reply":[{"ticketnumber":"61947"}],"all":[{"ticketnumber":"61947"}]);
using
success: function(data) {
for(var i in data) {
console.log(data[i]);
}
}
but i cannot get the key values, so i want to get "reply" and "all" then loop through those inside the first loop