I am quite new to backbone.js with little experience in javaScript. I was trying various backbone tutorial found here and there. e.g. from this tutorial I was trying to learn
In most of the tutorials like above one, they use following code inside Backbone.View.extend to set the model in html template and then render it,
render: function() {
var tmpl = _.template(this.template);
this.$el.html(tmpl(this.model.toJSON()));
return this;
}
but when I run the code in chrome debugger it says this this.$el is undefined. I searched a lot but didn't get the solution, then I modified the code by own and it worked,
$(this.el).html(tmpl(this.model.toJSON()));
I'm using cdnjs hosted libraries for backbone, underscore and jquery.
I want to know why every backbone tutorial on internet is using this.$el version but it doesn't work for me?
And also, when I use the the library(backbone, underscore etc.) files provided by the tutorials instead of hosted one, chrome debugger gives various errors in libraries, why?
backboneyou're using ? – Cyclone Jan 8 at 6:520.9.0or newer one,this.$elproperty -a cached jQuery (or Zepto) reference to the view's elementwas added in that version. You can refer to the change log of 0.9.0 in docs. – Cyclone Jan 8 at 6:56this.$el– kushdilip Jan 8 at 7:00