In my web application, I have a user list in a table on the left, and a user detail pane on the right. When the admin clicks a user in the table, its details should be displ
To fix events binding multiple times,
$("#my_app_container").unbind() //Instantiate your views here
Using the above line before instantiating the new Views from route, solved the issue I had with zombie views.