What are the JQuery bad/worst practices you have seen, written or thing should be avoided?
|
|
A thing you should avoid is using the "easy to use" selectors in every line once again, because the JavaScript implementation of selectors is not that efficient. Of course, the jQUery guys are optimizing it, however I think you should use it as little as possible. So, this is a bad practice.
Chaining is good
And remembering things in a local variable is also not bad:
|
|||||
|
|
|
There are two that I see alot: First, in a click event, the
That creates a new jQuery object around the DOM node, and calls a function. The following is the correct way:
Note: That you will also see The second is passing anything except a DOM node into the
There is no speed gain at all by doing this. Where you do see a speed increase, is when you already have the DOM element:
|
|||
|
|
|
James Padolsey has written an excellent article on jQuery code smells. I recommend reading it. |
|||
|
|
|
Still using the old document ready function:
Instead of the very common:
It's not really bad, but I shows people not getting up with new api's. |
|||||||||||||||
|