What’s the difference between: $(this.el).html and this.$el.html
$(this.el) wraps an element with jQuery (or Zepto). So, if your view HTML was this: <div id=”myViewElement”></div> …and this.el referenced that div, then $(this.el) would be the equivalent of retrieving it directly via jQuery: $(‘#myViewElement’). this.$el is a cached reference to the jQuery (or Zepto) object, so a copy of what you would get from … Read more