Events for arrow keys (→←↑↓). Depends on jquery.
npm install arrowkeys> Events for arrow keys (→←↑↓). Depends on jquery.
Load script:
``html`
To bind arrowkey events:
``
$(document).arrowkeys();
Handle each key event:
``
$(document)
.on('upkey', function () {})
.on('downkey', function () {})
.on('leftkey', function () {})
.on('rightkey', function () {});
To unbind the events:
```
$(document).arrowkeysUnbind();
MIT