I am creating an app in Backbone.js which has a parent and multiple child views. The child views contain links which they listen to and perform a function.
The parent st
A really common challenge. For future finders of this question, here's a great article about view rendering:
You just need to make sure that delegateEvents is called to rebind the events on your subviews any time .html() runs. And since Backbone’s setElement calls delegateEvents already, a quick solution could look like this...
http://ianstormtaylor.com/rendering-views-in-backbonejs-isnt-always-simple/