Skip to content

Instantly share code, notes, and snippets.

@daniellealexis
Last active August 21, 2016 03:44
Show Gist options
  • Select an option

  • Save daniellealexis/793a9c0a5781aac6801fb9e72b933836 to your computer and use it in GitHub Desktop.

Select an option

Save daniellealexis/793a9c0a5781aac6801fb9e72b933836 to your computer and use it in GitHub Desktop.
Backbone 'find' Shortcut
// Where's that thing?
this.$el.find('.thing');
// Ooh yes, that thing!
this.$('.thing');
// Let's store this thing for easy use later!
this.$thing = this.$('.thing');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment