Iam practising Backbone JS, below is the code Iam tying to display Todo Collection on the page. But iam not understanding what went wrong with the below code and at end displayi
The problem is you are appending this which is returned from the view.You have to attach el of view to DOM.
this
el
DOM
this.$el.append(todoView.render().el);