Basically, I have a table. Onload, I set each row of the table to display:none since I have a lot of javascript processing to be done and I don\'t want user to
display:none
Use visibility instead of display for your case.
visibility: hidden;
after load
visibility: visible;
find out more here