Answers for "html disable scrolling with keys"

0

html disable scrolling with keys

<script>
  /*
  These lines of code disable the funcionality of the arrow keys and the 
  space key
  */
  window.addEventListener("keydown", (e) => {
    switch(e.keyCode) {
      case 32: 
      case 37: 
      case 38: 
      case 39: 
      case 40:
        e.preventDefault();
        break;
      default:
        break;
    }
  });
</script>
Posted by: Guest on June-19-2021

Code answers related to "html disable scrolling with keys"

Browse Popular Code Answers by Language