jQuery.Hotkeys
0.8.0.20131227
dotnet add package jQuery.Hotkeys --version 0.8.0.20131227
NuGet\Install-Package jQuery.Hotkeys -Version 0.8.0.20131227
<PackageReference Include="jQuery.Hotkeys" Version="0.8.0.20131227" />
paket add jQuery.Hotkeys --version 0.8.0.20131227
#r "nuget: jQuery.Hotkeys, 0.8.0.20131227"
// Install jQuery.Hotkeys as a Cake Addin #addin nuget:?package=jQuery.Hotkeys&version=0.8.0.20131227 // Install jQuery.Hotkeys as a Cake Tool #tool nuget:?package=jQuery.Hotkeys&version=0.8.0.20131227
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.
This plugin is based off of the plugin by Tzury Bar Yochay: https://github.com/tzuryby/hotkeys
The syntax is as follows:
$(expression).bind(types.keys, handler);
$(expression).unbind(types.keys, handler);
$(document).bind('keydown.ctrl_a', fn);
// e.g. replace '$' sign with 'EUR'
$('input.foo').bind('keyup.$', function(){
this.value = this.value.replace('$', 'EUR');
});
Types
Supported types are 'keydown', 'keyup' and 'keypress'
More details: https://github.com/tzuryby/jquery.hotkeys#readme
Learn more about Target Frameworks and .NET Standard.
-
- jquery (>= 1.4.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
0.8.0.20131227 | 87,714 | 1/2/2014 |
0.8.0 | 8,937 | 11/27/2012 |