Skip to content

Instantly share code, notes, and snippets.

@ahmedghazi
Last active May 9, 2018 13:53
Show Gist options
  • Save ahmedghazi/b3db00f57235feea0746ec63155a3686 to your computer and use it in GitHub Desktop.
Save ahmedghazi/b3db00f57235feea0746ec63155a3686 to your computer and use it in GitHub Desktop.
keyboard events
```javascript
$(document).keyup(function (event) {
//console.log(event.keyCode)
switch(event.keyCode){
case 27:
$(".dialog-close").click()
break;
case 39:
$(".controls.next").click()
break;
case 37:
$(".controls.prev").click()
break;
}
});
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment