Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

keyCode for tab is not working

I am using the event keypress in backbone. The keyCode for Enter(13) works fine but the keyCode for tab(9) is not working for some odd reason. Please help me figure this out. Thanks.

onEnterSetTitle: function(ev) {
        if (ev.keyCode === 9) {
            this.$el.find('.set-title-input input').trigger('blur');
        }
    },
like image 508
Raymond the Developer Avatar asked Sep 03 '26 19:09

Raymond the Developer


1 Answers

I fixed it by replace keypress with keydown.

like image 82
Raymond the Developer Avatar answered Sep 05 '26 07:09

Raymond the Developer