Deactivate or remove the scrollbar on HTML
What I would try in this case is put this in the stylesheet
html, body{overflow:hidden;}
this way one disables the scrollbar, and as a cumulative effect they disable scrolling with the keyboard
If you really need it...
html { overflow-y: hidden; }