diff --git a/index.html b/index.html index 9e7c6aed0..ff07ce82b 100644 --- a/index.html +++ b/index.html @@ -2302,7 +2302,7 @@

Backbone.View

 var Bookmark = Backbone.View.extend({
   render: function() {
-    $(this.el).html(this.template(this.model.toJSON()));
+    this.$el.html(this.template(this.model.toJSON()));
     return this;
   }
 });
@@ -2334,7 +2334,7 @@ 

Backbone.View

removeview.remove()
Convenience function for removing the view from the DOM. Equivalent to calling - $(view.el).remove(); + view.$el.remove();

@@ -2405,7 +2405,7 @@

Backbone.View

}, render: function() { - $(this.el).html(this.template(this.model.toJSON())); + this.$el.html(this.template(this.model.toJSON())); return this; },