I am starting a project with jQuery.
What pitfalls/errors/misconceptions/abuses/misuses did you have in your jQuery project?
|
79
|
I am starting a project with jQuery. What pitfalls/errors/misconceptions/abuses/misuses did you have in your jQuery project? |
|||
|
|
|
|
Overusing selectors and not assigning them to local variables, e.g.
Rather than:-
I found this the enlightening moment when I realized how the call stacks work. |
||||||||||||||
|
|
|
If you want users to see html entities in their browser, use 'html' instead of 'text' to inject a Unicode string, like:
|
|||
|
|
|
|
Using jQuery in a small project that can be completed with just a couple of lines of ordinary JavaScript. |
||||||||||
|
|
|
I say this for JavaScript as well, but jQuery, JavaScript should NEVER replace CSS. Also, make sure the site is usable for someone with JavaScript turned off (not as relevant today as back in the day, but always nice to have a fully usable site). |
|||
|
|
|
|
10 Ways to Instantly Increase Your jQuery Performance Check this article. |
|||
|
|
|
|
Don't abuse plug-ins. Most of the times you'll only need the library and maybe the user interface. If you keep it simple your code will be maintainable in the long run. Not all plug-ins are supported and maintained, actually most are not. If you can mimic the functionality using core elements I strongly recommend it. Plug-ins are easy to insert in your code, save you some time, but when you'll need an extra something, it is a bad idea to modify them, as you lose the possible updates. The time you save at the start you'll loose later on changing deprecated plug-ins. Choose the plug-ins you use wisely. Apart from library and user interface, I constantly use $.cookie , $.form, $.validate and thickbox. For the rest I mostly develop my own plug-ins. |
||||
|
|
|
Events
doesn't clone any of the events - you have to rebind them all. As per JP's comment - clone() does rebind the events if you pass true. |
|||
|
|
Similar to what Repo Man said, but not quite. When developing ASP.NET winforms, I often do
forgetting the # sign. The correct form is
|
|||
|
|
|
|
Always cache $(this) to a meaningful variable especially in a .each() Like this
|
|||
|
|
|
|
Avoid searching through the entire DOM several times. This is something that really can delay your script. Bad:
Good:
Bad:
Good:
|
||||||||||
|
|
|
Passing IDs instead of jQuery objects to functions:
Passing a wrapped set is far more flexible:
|
|||
|
|
|
|
"Chaining" Animation-events with Callbacks.Suppose you wanted to animate a paragraph vanishing upon clicking it. You also wanted to remove the element from the DOM afterwards. You may think you can simply chain the methods:
In this example, .remove() will be called before .fadeOut() has completed, destroying your gradual-fading effect, and simply making the element vanish instantly. Instead, when you want to fire a command only upon finishing the previous, use the callback's:
The second parameter of .fadeOut() is an anonymous function that will run once the .fadeOut() animation has completed. This makes for a gradual fading, and a subsequent removal of the element. |
|||
|
|
|
|
If you plan to Ajax in lots of data, like say, 1500 rows of a table with 20 columns, then don't even think of using jQuery to insert that data into your HTML. Use plain JavaScript. jQuery will be too slow on slower machines. Also, half the time jQuery will do things that will cause it to be slower, like trying to parse script tags in the incoming HTML, and deal with browser quirks. If you want fast insertion speed, stick with plain JavaScript. |
|||
|
|
|
Pitfall: Using loops instead of selectors. If you find yourself reaching for the jQuery '.each' method to iterate over DOM elements, ask yourself if can use a selector to get the elements instead. More information on jQuery selectors: Pitfall: NOT using a tool like Firebug Firebug was practically made for this kind of debugging. If you're going to be mucking about in the DOM with Javascript, you need a good tool like Firebug to give you visibility. More information on Firebug: http://getfirebug.com/ Other great ideas are in this episode of the Polymorphic Podcast: (jQuery Secrets with Dave Ward) http://polymorphicpodcast.com/shows/jquery/ |
||||||||
|
|
|
Understand how to use context. Normally, a jQuery selector will search the whole doc:
But you can speed things up by searching within a context:
Note, that the context is one element of a jQuery result, ct[0], as opposed to the whole result object, ct:
Brandon Aaron has a great post that opened my eyes to this |
||||||||||||
|
|
|
Don't use bare class selectors, like this:
This will end up looking at every single element to see if it has a class of "button". Instead, you can help it out, like:
I learned this last year from Rebecca Murphy's blog |
||||
|
|
|
I have seen hundreds of lines of code inside the doc ready statement. Ugly, unreadable and impossible to maintain. |
||||
|
|
|
Using ClientID to get the "real" id of the control in ASP.NET projects.
Also, if you are using jQuery inside SharePoint you must call jQuery.noConflict(). |
||||||||||||||
|
|
|
Misunderstanding of using this identifier in the right context. For instance:
And here one of the samples how you can solve it:
|
|||
|
|
|
|
Avoid multiple creation of the same jQuery objects
|
||||||||||||||||
|
|
|
Try to split out anonymous functions so you can reuse them.
|
||||||||||||||
|
|
|
While using Rather than See Ajax Events in the docs. |
||||||||||||||||||
|
|
|
If you bind() the same event multiple times it will fire multiple times . I usually always go unbind('click').bind('click') just to be safe |
||||||||
|
|
|
Not understanding event binding. JavaScript and jQuery work differently. By popular demand, an example: In jQuery:
Without jQuery:
Basically the hooks required for JavaScript are no longer necessary. I.e. use inline markup (onClick, etc) because you can simply use the ID's and classes that a developer would normally leverage for CSS purposes. |
||||||||
|
|
|
Excessive use of chaining. See this:
|
||||||||||
|