Skip to content

Instantly share code, notes, and snippets.

@angry-dan
Created November 13, 2013 19:31
Show Gist options
  • Save angry-dan/7454928 to your computer and use it in GitHub Desktop.
Save angry-dan/7454928 to your computer and use it in GitHub Desktop.
Rescope your jQuery function, for neatness. See http://jsfiddle.net/66dGe/
$.fn.scope = function() {
var scope = this;
return function(selector) {
return $(selector, scope)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment