javascript - Make + key act like Tab in a form using AngularJS -


i working on web application using angularjs.

within form, client wants + key work tab key. form contains static text inputs, submit input, , buttons. contain dynamically added text inputs, added using ng-repeat.

i thought capturing keypress event , changing keycode, not working.

any ideas?

you need capture key press event, suppress (stop propagation, prevent default), , send new custom keypress event.


Comments