diff --git a/backbone.js b/backbone.js index bf4e4a75..9779f72e 100644 --- a/backbone.js +++ b/backbone.js @@ -996,7 +996,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 $(this.el).find(selector); + return this.$el.find(selector); }, // Initialize is an empty function by default. Override it with your own