Hi guys!
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
Obviously, it doesn't work in IE....anybody with a solution?
Thanks!
Ben.
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;
}
};
Thanks!
Ben.
Comment