To prevent scrolling with the spacebar using the keydown event instead of keyup, you can listen for the spacebar key using JavaScript and prevent the default behavior of the key if it is pressed down.
Source code viewer
document.addEventListener('keydown', function(event) { if (event.code === 'Space') { event.preventDefault(); } });Programming Language: Javascript