Skip to content

Instantly share code, notes, and snippets.

@bmcalister
Last active August 29, 2015 14:15
Show Gist options
  • Save bmcalister/d88401c1a25279c9e610 to your computer and use it in GitHub Desktop.
Save bmcalister/d88401c1a25279c9e610 to your computer and use it in GitHub Desktop.
jQuery selector cache
window._$ = (function($, undefined){
var cache = [];
return function(selector, update) {
if( cache[ selector ] === undefined || update === true ) {
cache[ selector ] = $(selector);
}
return cache[ selector ];
}
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment