Example - demo http://jsfiddle.net/kVdZG/
You can repeat and add items.
<table id='scores' border="1"></table>
JS -
var data = { "scores" : [ ["3/1/2011", 610],["4/1/2011", 610],["5/1/2011", 610],["6/1/2011", 610], ["7/1/2011", 720], ["8/1/2011", 500], ["9/1/2011", 500] ] } $(data.scores).each(function(index, element){ $('#scores').append('<tr><td> '+element[0]+' </td> <td> '+element[1]+' </td></tr>'); })
source share