i'm implementing a charcounter in the UI, so a user can see how many characters are left for input.
To count, i use this simple function:
function typerCount(source, layerID)
{
outPanel = GetElementByID(layerID);
outPanel.innerHTML = source.value.length.toString();
}
- source contains the field which values we want to meassure
- layerID contains the element ID of the object we want to put the result in (a span or div)
- outPanel is just a temporary var
If i activate this function, while typing the machine really slows down and i can see that FF is using one core at 100%. you can't write fluently because it hangs after each block of few letters.
The problem, it seems, may be the value.length() function call in the second line?
Regards
innerHTMLinstead ofdocument.createTextNodeand because you always callGetElementByIdinstead of storing the node variable. – artyom.stv Jun 10 '11 at 16:15document.getElementByIdisGetElementByID? – Šime Vidas Jun 10 '11 at 16:16value.lengthis a property access, not a function call, which means that the only overhead is in resolving the property. There is not enough information in the question to answer. Could you provide an SSCCE? If you don't have a live link we could see, use jsFiddle or jsbin. Does the high CPU usage also occur in other browsers? – Matt Ball Jun 10 '11 at 16:18outPanelvariable. As for now, it's an implicit global... – Šime Vidas Jun 10 '11 at 16:18