Skip to content

Instantly share code, notes, and snippets.

@holloway
Created September 29, 2016 22:18
Show Gist options
  • Save holloway/0e284240f48888b2444c90202024c8b5 to your computer and use it in GitHub Desktop.
Save holloway/0e284240f48888b2444c90202024c8b5 to your computer and use it in GitHub Desktop.
## Cache your selectors
Don't do this:
```JavaScript
$("body").on("click", function() {
$("body").addClass("clicked");
});
```
Do this:
```JavaScript
var $body = $("body");
$body.on("click", function() {
$body.addClass("clicked");
});
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment