I am creating a sample Modular backbone application. I am loading different view with the help of router.In one of my view I have a button which has a click event function defined. The problem is When i click this button the click event function is getting called twice.
Any help Would be appreciated!!!!!
below is my code
events: {
'click #hitMe': 'DisplayStudentColl'
},
DisplayStudentColl: function(e) {
var data = { };
}