wanna add keyboard shortcuts to your web application?

Published on Author Akhil Bansal1 Comment

Today I was looking for some javascript to add keyboard shortcuts to my project. And after little search on google I came across a very cool and lightweight javascript library shortcuts.js .
This library allows you to make keyboard shortcuts on a fly.
Example:
[source:JavaScript]
shortcut(“Ctrl”,function() {
alert(“Hi there!”);
});
[/source]

Please visit this site to know more about this javascript library.

One Response to wanna add keyboard shortcuts to your web application?

Leave a Reply

Your email address will not be published. Required fields are marked *