次のマークアップがあるとします
<ul class="app-nav">
<li><a href="#!/testing">Link to testing route</a>
</ul>
...
<a href="#!/testing">Other link to testing route</a>
jQuery の使用
$('a').click(function() {
console.log( $(this) ); //the event sender and can be 'a' or 'ul>li>a'
});
sammy.js を使用
this.get('#!/testing', function(context) {
//how I can get the event sender?
});