I have a JSON object which is generated by PHP. It\'s an object with a set of dates. It has the timeStamp and then a formatted version of the date. How would I iterate throu
You can simply iterate through the json structure using jQuery each:
$.each(data, function(index, element) { alert(element.dates.timeStamp); });