I need to access some information about an element that has been associated with Backbone View events (ie href="something" ). How do I access this object?
var SomeView = Backbone.View.extend({ events: { "click a.some-class": "doStuff" } doStuff: function(e) { e.preventDefault();
source share