Last active
December 16, 2015 21:39
-
-
Save dbachet/5501410 to your computer and use it in GitHub Desktop.
Stop default page scroll down if key down was pressed. /!\ Not working....
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).keyup (e) => | |
switch e.which | |
# key down | |
when 40 | |
e.preventDefault() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment