I am trying to detect if the control key has been pressed to change
and action. I am using the latest proto build.
Here is my code:
<script type="text/javascript">
document.observe('keydown', function(k) {
if (k.keyCode != 17) return;
alert('ctrl');
});
</script>
For the control key, it will only trigger the alert every other time
the key is pressed. For other keys it works every time thou.
Can you offer any advice.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Spinoffs" 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/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---