Alladnian answered this, but I would add that when using el you can use $el , which is the cached jQuery object of your view element.
That way, you can always just pass in the tag you want to use (for consistency, brevity and flexibility) and then reference it as $el to use it as a jQuery object.
this.$el.addClass("active");
Stuart
source share