What is the equivalent of this $(document).on('keydown', this.logKey); for Backbone events:{}? I am asking because I rather bind all events at once place rather than put some in the initialize method.
I tried the suggestion here: how to capture the key event from a view ? I.e. events{'keydown' : 'logKey'}. This is not working for me though.
The CSS selectors defined in the View.delegateEvents() are bounded to the context of
View.$elso if you want the View to manage the events ondocumenttheView.$elshould bedocumentitself: