I'm currently building web application that make use of the spacebar and I need to disable the automatic pagedown that is taking place when pressing the spacebar. In Firefox, I use the following javascript on pageload
Code:
window.onkeydown=function(e){
if(e.keyCode==32){
return false;
}
};