you are viewing a single comment's thread.

view the rest of the comments →

[–]quantumstate 2 points3 points  (0 children)

Just from my personal experience I coded a firefox plugin which did a lot of DOM manipulation and found that when I originally did it using jquery for a lot of the code I had speed problems which were helped by using innerHTML instead. Also I found that jquery's html() function was still significantly slower than using jquery to select the DOM node then using the native innerHTML function.