Skip to content

Instantly share code, notes, and snippets.

@niranyousuf
Last active April 6, 2023 08:05
Show Gist options
  • Save niranyousuf/177520c80a2a12794c13c230470b768c to your computer and use it in GitHub Desktop.
Save niranyousuf/177520c80a2a12794c13c230470b768c to your computer and use it in GitHub Desktop.
How to disable scrolling on pressing space bar
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