Let's say I have an array containing the data that I want to display in the html table. (like gmail has all the data in js objects)
I have this data in an array, so I can perform ajax type operations such as updating / deleting / sorting data.
Are there jQuery templates where I can create a template for a given row and then just skip my javascript array / json object and then insert the row into the table?
This is an ordinary model, but I have no experience with this, so I am looking for the best practice. I know that people use templates for this.
source
share