diff --git a/backbone.js b/backbone.js index 0991871d..14eb0565 100644 --- a/backbone.js +++ b/backbone.js @@ -984,7 +984,7 @@ // jQuery delegate for element lookup, scoped to DOM elements within the // current view. This should be prefered to global lookups where possible. $: function(selector) { - return $(selector, this.el); + return this.$el.find(selector); }, // Initialize is an empty function by default. Override it with your own