Options
All
  • Public
  • Public/Protected
  • All
Menu

Namespace for the masked input jQuery Hotkeys plugin.

jQuery Hotkeys is a plug-in that lets you easily add and remove handlers for keyboard events anywhere in your code supporting almost any key combination. The official webpage is available at https://github.com/tzuryby/jquery.hotkeys

Usage is as follows:

$(expression).on(types.keys, handler);
$(expression).off(types.keys, handler);

$(document).on('keydown.ctrl_a', fn);

// e.g. replace '$' sign with 'EUR'
$('input.foo').on('keyup.$', function(){
this.value = this.value.replace('$', 'EUR');
});

Index

Generated using TypeDoc