Backbone view event not firing - not sure why
问题 I'm trying to get the click event to fire, but it's not working. Maybe someone can see something I can't. ConnectionView = GlobalView.extend({ tagName: 'div', events: { "click .social-links": "check" }, initialize: function() { this.render(); this.model.bind("change", this.render); }, render: function() { // Compile the template using underscore var template = _.template($("#connection-template").html(), this.model.toJSON()); // Load the compiled HTML into the Backbone "el" $(this.el).html