I am stuck with a stupid problem. Below is my code to get computed style of a dom. It run well on FireFox and even IE (surprised)! but damn too slow on chrome v17 (20x time slower). How to avoid the problem?

getCurrentStyle = function(el)
{
    if (el.currentStyle)
        return el.currentStyle;
    else if (window.getComputedStyle)
        return document.defaultView.getComputedStyle(el,null);
    return null;
}

Please help!

link|improve this question
It's probably more to do with how often you're calling the function than the function itself. – James McLaughlin Feb 21 at 12:30
Hi, I have edited my post: page run well on FF, not Chrome. The function was called very often: about 6000 times on start-up :(. It took 2 secs on FF but 30-40 secs on Chrome – QuangND Feb 21 at 12:44
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.