Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get attributes from the clicked element in backbone event?

Here is my basic backbone view for changing routes. I would like to get the href attribute of the clicked link. How to do that? Here is a code bellow:

var Menu = Backbone.View.extend({   
        el: '.nav', 
        events: {
            'click a' : 'changeRoute'
        },  
        changeRoute: function(e) {
            e.preventDefault();
            //var href = $(this).attr("href");
            router.navigate(href, true);
        }
 });

I am a newbie in backbone, so please have mercy :)

like image 294
hjuster Avatar asked Apr 02 '13 11:04

hjuster


1 Answers

you can use: var element = $(e.currentTarget);

then any attributes can be called like this: element.attr('id')

so in your code above:

changeRoute: function(e) {
   e.preventDefault();
   var href = $(e.currentTarget).attr("href");
   router.navigate(href, true);
}
like image 192
Alex Curtis Avatar answered Oct 18 '22 12:10

Alex Curtis