I am rendering a small table (maybe 10-12 cells) which is updated constantly.
I want it to be quick.
Chrome does the work very fast, but i am having problems on Firefox/IE.
Any suggestions for faster rendering?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Render the full table at once (create the full HTML for the table and insert it into the DOM, don’t insert cells/rows while looping through the data). Also, generating tags for the columns should help (even more if you specify the width for each column).