🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

Yet another jQuery keyboard shortcut plugin which listens for keyDown and keyUp events and allows to assign custom shortcuts to any actions you want.

Keyboard Shortcuts

Documentation

easykeyjs

Stop having to write code like this

$(document).keydown(function(e){ 	if (e.which == 13) //enter   reloadResults(); else if (e.which == 37) //left arrow   previousPage(); else if (e.which == 39) //right page   nextPage(); });  

And write this instead:

$(document)   .onEnterKeyDown(reloadResults)   .onLeftArrowKeyDown(previousPage)   .onRightArrowKeyDown(nextPage); 

Read more about easykeyjs.

Go download the latest version http://easykeyjs.com.


You May Also Like