Last active
April 6, 2023 08:05
-
-
Save niranyousuf/177520c80a2a12794c13c230470b768c to your computer and use it in GitHub Desktop.
How to disable scrolling on pressing space bar
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
window.onkeydown = function(e) { | |
return !(e.keyCode == 32); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment