Skip to content

Instantly share code, notes, and snippets.

@JoaoCnh
Created July 9, 2017 22:46
Show Gist options
  • Save JoaoCnh/919a3cf584ef00204d68c1dc38843083 to your computer and use it in GitHub Desktop.
Save JoaoCnh/919a3cf584ef00204d68c1dc38843083 to your computer and use it in GitHub Desktop.
caching jQuery lookups
// bad
function setSidebar() {
$('.sidebar').hide();
// ...
$('.sidebar').css({
'background-color': 'pink',
});
}
// good
function setSidebar() {
const $sidebar = $('.sidebar');
$sidebar.hide();
// ...
$sidebar.css({
'background-color': 'pink',
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment