What\'s the difference between:
$(this.el).html
and
this.$el.html
Reading a few backbone examples and so
They yield exactly the same thing; that is, a reference to a view's element. $el is simply a jquery wrapper for $(this.el). Look at this reference: http://documentcloud.github.com/backbone/#View-$el