Whats the most common waste of computing power in javascipt
Posted
by
qwertymk
on Stack Overflow
See other posts from Stack Overflow
or by qwertymk
Published on 2010-12-21T04:46:06Z
Indexed on
2010/12/21
5:00 UTC
Read the original article
Hit count: 227
We've all seen people who do this
jQuery('a').each(function(){
jQuery(this)[0].innerHTML += ' proccessed';
});
function letsPoluteNS() {
polute = '';
for (morePolution = 0; morePolution < arguments.length; morePolution++)
polute.join(arguments[morePolution]);
return polute;
}
and so on. I was wondering what people have seen the most common javascript/jQuery technique that is slowing down the page and/or wasting time for the javascript engine.
PS I know that this question may not seem to fit into whats an accepted question, yet I'm asking for what the most common accepted waste is
© Stack Overflow or respective owner