In one of my backbone.js view classes, I have something like:
...
events: {
\'click ul#perpage span\' : \'perpage\'
},
perpage: function() {
// Access the
Normally on an event bind, you would just use $(this)
, but I'm fairly sure Backbone views are set up so that this
always refer to the view, so try this:
perpage: function(ev) {
alert($(ev.target).text());
}
REALLY LATE EDIT: You probably want to use $(ev.currentTarget)
. See dicussion on pawlik's answer below