Send, or not to send, el in the constructor
I think always that is possible is better to send el in the constructor, this way the JS logic will be more decoupled from the DOM structure and not any DOM element name is hard-coded into the JS code.
This is also better for testing proposes so you don't need to recreate the production DOM structure in your tests and you can create a dummy DOM structure and instantiate your Views making reference to any DOM element in your dummy DOM structure.
Also the View becomes more reusable.
Using this.$el
I think in a performance point of view is better to use:
this.$el
VS
$(this.el)
Due the first option is already precompiled. jQuery consume resources transforming a simple DOM element in a jQuery DOM element and if you use this.$el this is done only once.
What to return in render()
As @muistooshort has said, the standard is to return this. Normally when you call render() what you only need from outside is el so returning el has a lot of logic but people has agreed to returning this.
In some way it has its logic due this expression looks awkward:
$('#header').html(new HeaderView().render())
But this other looks very much intuitive and self explained:
$('#header').html(new HeaderView().render().el)
this.$elover$(this.el)since$elis already there.return this;inrenderis the standard that everyone probably expects. Sometimes you passelto the constructor, sometimes you don't, it depends on circumstance. This is all opinion though so I'm voting to close (but there's your answer anyway). – mu is too short Aug 5 '12 at 6:29