Hello,
I would like to disabel all keyboard events.
I'm working with win XP an Ie6.
I can disable nearly all events with this script :
document.onkeyup =function(){return false};
document.onkeypress=function(){return false};
document.onkeydown=function(){return false};
But events like F1, Ctrl-P, Ctrl-F or Ctrl-N still working.
I tried to disable some of this events by modifying IE properties but Ctrl-P & Ctrl-F still working.
Could sommeOne Help me.
I would like to disabel all keyboard events.
I'm working with win XP an Ie6.
I can disable nearly all events with this script :
document.onkeyup =function(){return false};
document.onkeypress=function(){return false};
document.onkeydown=function(){return false};
But events like F1, Ctrl-P, Ctrl-F or Ctrl-N still working.
I tried to disable some of this events by modifying IE properties but Ctrl-P & Ctrl-F still working.
Could sommeOne Help me.