I'm new to jQuery, Edge Animate and this Forum..... and pretty novice at HTML5 and CSS3 so I could really use some assistance, PLEASE :-)
I have a JSON file with numerous records. I would like each record to represent one row in an html table. The JSON file gets over written each night and the number of records in the JSON file will change often. I would like to write the values of the file into a dynamic html table then use various animations to bring the table into view on the stage! Possible? Or is there a better way?
Example of my JSON:
[{"id":1,
"Division":"Austin",
"txt_one":9,
"txt_two":5,
"txt_three":20,
"txt_four":5
},
{"id":2,
"Division":"Houston",
"txt_one":0,
"txt_two":4,
"txt_three":0,
"txt_four":7
},
{"id":3,
"Division":"Phoenix",
"txt_one":1,
"txt_two":2,
"txt_three":3,
"txt_four":6
}]