i look at the example of
http://mootools.net/docs/Native/Event
$('myLink').addEvent('keydown', function(event){
//The passed event parameter is already an instance of the Event class.
alert(event.key); //Returns the lowercase letter pressed.
alert(event.shift); //Returns true if the key pressed is shift.
if (event.key == 's' && event.control) alert('Document saved.');
//Executes if the user hits Ctr+S.
});
in IE6 when I put my mouse into the div myLink, the keydown event fire
when my mouse take away, the event not fire
and in Firefox & chrome it not fire at all
this is a bug?