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
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="jQuery.Hotkeys" Version="0.8.0.20131227" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="jQuery.Hotkeys" Version="0.8.0.20131227" />
                    
Directory.Packages.props
<PackageReference Include="jQuery.Hotkeys" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add jQuery.Hotkeys --version 0.8.0.20131227
                    
#r "nuget: jQuery.Hotkeys, 0.8.0.20131227"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=jQuery.Hotkeys&version=0.8.0.20131227
                    
Install jQuery.Hotkeys as a Cake Addin
#tool nuget:?package=jQuery.Hotkeys&version=0.8.0.20131227
                    
Install jQuery.Hotkeys as a Cake Tool

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

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

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 92,439 1/2/2014
0.8.0 9,237 11/27/2012