Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

backbone-baby-steps

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?

share|improve this question
Wats the version of backbone you're using ? – Cyclone Jan 8 at 6:52
2  
try upgrading to 0.9.0 or newer one, this.$el property - a cached jQuery (or Zepto) reference to the view's element was added in that version. You can refer to the change log of 0.9.0 in docs. – Cyclone Jan 8 at 6:56
Thanks... I was using very old version. Now it's working with this.$el – kushdilip Jan 8 at 7:00
I've posted an answer, so that we can reduce unanswered questions by one. – Cyclone Jan 8 at 7:06

2 Answers

up vote 4 down vote accepted

As per the change log specified in the docs, $el property - a cached jQuery (or Zepto) reference to the view's element was added in version 0.9.0. Try upgrading the version of backbone you're using to 0.9.0 or above. It should work after that.

share|improve this answer

You need to define in your View like below

var ElementView = Backbone.View.extend({
    el: $("#picker")
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.