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

link|improve this question

20% accept rate
3  
Can you give us a jsfiddle? so we can try alternative methods without having to rewrite a similar script – OmerPT Jun 10 '11 at 16:15
2  
Because you use innerHTML instead of document.createTextNode and because you always call GetElementById instead of storing the node variable. – artyom.stv Jun 10 '11 at 16:15
1  
@john Your alias for document.getElementById is GetElementByID? – Šime Vidas Jun 10 '11 at 16:16
1  
value.length is 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:18
3  
@john Declare the outPanel variable. As for now, it's an implicit global... – Šime Vidas Jun 10 '11 at 16:18
show 18 more comments
feedback

4 Answers

I can't tell you why it's that slow, there's just not enough code in your example to determine that. If you want to count characters in a textarea and limit input to n characters, check this jsfiddle. It's fast enough to type without obstruction.

link|improve this answer
this fiddle works in the GUI on their site. – johngrinder Jun 10 '11 at 16:45
Nice fiddle there. – ErikE Jun 10 '11 at 16:52
I tried that fiddle, too; no effect on the problem. See my CSS post/issue above, applies also with the fiddle you posted. – johngrinder Jun 10 '11 at 20:30
@johngrinder: then I suppose the problem is something else. Your question doesn't contain enough information to tell you more. I've added the css from your comments on the question to the fiddle, by the way - still not slow. In short: problem can't be reproduced with the provided information. – KooiInc Jun 11 '11 at 7:51
@Kooilnc: what i found out, today, is that in other browsers like Opera etc., this problem does not occur... only in FF. Really really strange. – johngrinder Jul 8 '11 at 12:22
feedback

It could be having problems with outPanel. Every time you call that function, it will look up that DOM node. If you are targeting the same DOM node, that's very expensive for the browser if it's doing that every single time you type a character.

Also, this is too verbose:

source.value.length.toString();

This is sufficient:

source.value.length;

JavaScript is dynamic. It doesn't need the conversion to a string.

link|improve this answer
ok, changed. (does not help, too) – johngrinder Jun 10 '11 at 16:35
1  
while caching is, in general, a good practice, getting an element by ID is very fast, and likely not the culprit. – Matt Jun 10 '11 at 16:37
feedback

I doubt your problem is with the use of innerHTML or getElementById().

I would try to isolate the problem by removing parts of the function and seeing how the cpu is used. For instance, try it all these ways:

var len;

function typerCount(source, layerID)
{
    len = source.value.length;
}

function typerCount(source, layerID)
{
    len = source.value.length.toString();
}

function typerCount(source, layerID)
{
    outPanel = GetElementByID(layerID);
    outPanel.innerHTML = "test";
}
link|improve this answer
feedback

As artyom.stv mentioned in the comments, cache the result of your GetElementByID call. Also, as a side note, what is GetElementByID doing? Is it doing anything else other than calling document.getElementById?

How would you cache this you say?

var outPanelsById = {};

function getOutPanelById(id) {
    var panel = outPanelsById[id];

    if (!panel) {
         panel = document.getElementById(id);
         outPanelsById[id] = panel;
    }

    return panel;
};

function typerCount(source, layerId) {
    var panel = getOutPanelById(layerId);
    panel.innerHTML = source.value.length.toString();
};

I'm thinking there has to be something else going on though, as even getElementById calls are extremely fast in FF.

Also, what is "source"? Is it a DOMElement? Or is it something else?

link|improve this answer
GetElementID is just a simple wrapper: function GetElementByID( name ) { return document.getElementById( name ); } – johngrinder Jun 10 '11 at 16:28
tried your solution, does not help :-( same behvaiour: cursor is not moving fluently, hangs – johngrinder Jun 10 '11 at 16:34
One of your getElementByIds had improper case, ftfy. – ErikE Jun 10 '11 at 16:37
I'm curious why you are doing this caching....all it does it use a different (smaller) hash table to look up the element by id....I seriously doubt that is significantly faster than just using getElementById directly, especially if you take into account function call overhead, the if statement, etc. Just seems like a lot of extra complexity for very little benefit. – rob Jun 10 '11 at 16:54
rob, you are right, it probably isn't a huge benefit. I was just taking a stab. – Polaris878 Jun 10 '11 at 20:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.