In one of my backbone.js view classes, I have something like:

...

events: {
  'click ul#perpage span' : 'perpage'
},

perpage: function() {
  // Access the text of the span that was clicked here
  // Something like: alert($(element).text())
},

...

because my per page markup might have something like:

<ul id="perpage">
  <li><span>5</span></li>
  <li><span>10</span></li>
</ul>

So how exactly can I find information about the element that caused the event? Or in this instance, that was clicked?

link|improve this question

feedback

2 Answers

up vote 19 down vote accepted

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());
}
link|improve this answer
1  
If I'm correct, this works with jquery events (the one's the poster asked about). Note however that events triggered through backbone's trigger() function does not carry this information (it instead gives you the arguments used when calling trigger()) – Jens Alm May 7 '11 at 12:27
3  
man, why isn't this nugget in the docs? grumble grumble. – roufamatic May 27 '11 at 10:36
feedback

ev.target can be misleading, you should use ev.currentTarget as described on http://www.quirksmode.org/js/events_order.html

link|improve this answer
2  
Good to know about - but it looks like it's not implemented in IE - or does jQuery do normalization to fix this? – Jamie Wong Apr 17 '11 at 1:31
1  
Looks like jQuery normalizes both ev.target as the dom element initializing the event and ev.currentTarget as the current DOM element within the event bubbling phase api.jquery.com/category/events/event-object – mikermcneil Aug 16 '11 at 19:21
3  
I was just playing with this, and to clarify, you probably want ev.currentTarget. It is normalized and safe for use in all jQuery supported browsers. – mikermcneil Aug 16 '11 at 19:27
Yes, you want to use currentTarget instead of target. For example, if you bind a link that contain child objects "<a><span>text</a>" target can point to <span> and not <a>. – Evgeny Feb 21 at 9:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.