What are some quick tips for increasing jQuery performance?
|
2
|
|||||||||||||||||||||
|
|
|
|
||||||||||||||||
|
|
|
I think you asking for code optimization, but since the performance highly depends on the used JavaScript-Engine, I'd like to mention Google Chrome Frame. |
||
|
|
|
|
Know when to use plain JavaScript instead of JQuery methods. jQuery is an addition to JS+DOM, not a complete replacement for it. You don't have to use jQuery for every line of code you write. Some things are more succinctly expressed without it; many things are faster without it. Learn what the DOM makes available so you don't end up writing some of the sillier examples I've seen posted here. eg.:
faster, easier to read, doesn't break with unexpected characters in ID:
|
|||
|
|
|
it doeas apply always to common javascript: always cache, cache, cache e.g.:
|
||
|
|
|
|
One of the best ways to ensure efficiency is to make sure the *selector is targeting the element/class etc as specific as possible. *$(SELECTOR) |
||
|
|
|
|
It's not really possible to increase the speed of jQuery, it really depends on how efficient your code is, how efficient the browser's JS interpreter is and how quick the computer running the code is. You could perhaps try and rewrite jQuery to make it more efficient, but that's going to take time and it's most likely already quite optimised. |
||||
|
|
|
Rather than doing:
you can do:
|
||||||||||
|
|
|
Paul Irish recently did a presentation on performance at the jQuery Conference 2009. The slides are some of the most comprehensive that I have seen. |
||
|
|
|
Reference files on google's CDN so they load faster. |
||||||
|
