I want make alert, that will be run after user presses Alt+F+U
.
How to make it with jquery?
I want make alert, that will be run after user presses Alt+F+U
.
How to make it with jquery?
It is a nice jquery plugin for binding hotkey combinations:
$(document).bind('keydown', 'alt+f+u', fn);
You can use the jquery js-hotkeys plugin. Example of usage :
$(document).bind('keydown', 'ctrl+c', fn);