I have the following JSON returned from an AJAX call:
{"rows":[{"Date":"07/10/2011","Value":1206,"Action":"Drink"},
{"Date":"07/11/2011","Value":2288,"Action":"Pie"},
{"Date":"07/12/2011","Value":1070,"Action":"Drink"},
{"Date":"07/13/2011","Value":1535,"Action":"Beer"},
{"Date":"07/14/2011","Value":1721,"Action":"Drink"}],
"page":1,"total":1,"records":5}
How can I get values from this result using jQuery?
For instance, I'd like to get data elements for the first row:
json.rows[0].date = 07/10/2011
json.rows[0].value = 1206
?