jQuery caching
var $$ = (function() {
var cache = {};
return (function (selector) {
return cache[selector] || ( cache[selector] = jQuery (selector) );
});
})();
- It's wasteful to constantly call $(selector) over and over again with the same selector.
- Faster DOMElement look ups.
Update 1: Hide the cache
variable inside a closure - as suggested by "dpashkevich".
Written by Boopathi Rajaa
Related protips
4 Responses
Simple but smart. I love it.
I particularly like that you don't have the overhead of pre-caching your selectors in separate variables at the top of your method, namespace, or constructor. Have you tried this in a project with Backbone? I typically cache my elements as properties of my View instances: myNavView.$nav = $('#nav'). That could simply become $$('#nav'), no?
over 1 year ago
·
Good if your DOM don't change between two calls.
over 1 year ago
·
Here's a modified version that hides the cache
variable inside a closure:
var $$ = (function() {
var cache = {};
return (function (selector) {
return cache[selector] || ( cache[selector] = jQuery (selector) );
});
})();
over 1 year ago
·
@mlb You have a point - this pattern is problematic with dynamic websites. But you could implement some cache invalidation for that.
over 1 year ago
·
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Jquery
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#