Seems to me the most important yet tricky thing to get right when writing jQuery is the selector.
What tips do you have for writing an accurate selector?
|
|
|
|
|
|
|
Study the manual. |
||
|
|
|
|
here's my tip... keep this in your bookmarks: http://www.learningjquery.com/2006/11/how-to-get-anything-you-want-part-1 |
||
|
|
|
|
Performance test your selectors Yea, everything's hunky dory for me on my 8 Cores of goodness in Chrome. But then I pretend I'm a client and visiting on a 900 mHz IE6 machine (don't laugh, I keep one of these next to me to test this stuff) and suddenly I can get lunch in the time it takes my selector to return. I changed some code from this: $('.class, .class2, .class3').show() To something like this: array.push($(this)) ... $(array).show() And sped it up 100x |
||||||
|
|
|
Keep in mind the CSS Specificity, so you don't select to much or to few elements. |
||
|
|
|
|
Not a direct answer to your question, but with respect to performance the selector is the 2nd most important thing to get right. The most important thing is the
|
||
|
|
|
Make it easy to write selectors by using class decorators to identify similar elements.
|
||
|
|
|
|
While |
||
|
|
|
|
Take a look at John Resig’s presentations about jQuery, especially the ones that deal with its performance. The essentials are that jQuery processes the selector from right to left and not from left to right. So the selector So your last sub-selector should be the most expressive while the others can be less expressive. |
||
|
|
|
|
I've used SelectorGadget. It works fairly well provided the HTML isn't too complex. |
||
|
|
|
|
As with anything else, understand how the library works before using it. |
||
|
|