Hi All, I've just written a Gears app to take a website offline on mobile devices and it uses, mainly, IE Mobile.
The issue is one of performance (or lack thereof). My JavaScript code generates an HTML table with a hundred or more rows from the SQLite database and then adds it to the page using the innerHTML property of a DIV. This is slooooow. Any more than a couple of hundred rows and it gets very slow. What's the best practice for building tables in this way? innerHTML or creating nodes for each row using the DOM. Jake
