Could someone please help me understand what is going on here? Note
that I want the event to fire regardless of where focus is.
The following works fine on IE6, IE7, and chrome. Not working on ff
3.0.7.
<html><head>
<script src="prototype.js" type="text/javascript" ></script>
<script type="text/javascript">
Event.observe(window, 'load',
function(){
Event.observe(document.body, 'keydown', myEventHandler);
});
function myEventHandler(evt) {
alert(evt.keyCode);
}
</script>
</head>
<body >
<input type="text" /><br><br>
</body></html>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---