I have a div that is not contentEditable. I capture keystrokes, insert the associated char into a string in memory, and then call a render() function that replaces the innerHTML of the div with the current string.
My question is, why does this loop get slower and slower as the innerHTML get's larger? All I'm doing is overwriting the innerHTML of the div with a straight string. Shouldn't this be constant time?
dojo.byId('thisFrame').innerHTML = this.value.string;
I don't understand how this is dependent on the size of the string at all. It slows down when the string's length gets over about 200 characters, and slows down drastically from there on out.
textContentinstead of theinnerHTMLproperty... If the string is not HTML source code, you shouldn't be usinginnerHTML... – Šime Vidas Nov 26 '11 at 20:41