Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Edit::

Thanks Everyone for being helpful, but I tracked my problem as <script src="jquery.js" /> instead of <script src="jquery.js"></script>. Please vote to close

Any idea why

$(function(){
   $(document).keydown(function(evt) {
         alert('Hello');
     }); 
})

is not working? I am using Firefox 3.6.13 on Ubuntu 10.10. Well I copied it form here.

share|improve this question
It works on my system (same FF version) – Don Feb 24 '11 at 8:44
try the keypress event? – The_Butcher Feb 24 '11 at 8:46

2 Answers

up vote 4 down vote accepted

I would be tempted to use delegate():

$(window).delegate('*', 'keypress', function (evt){
        alert("erm");
      });

Come fiddle with me: http://jsfiddle.net/neuroflux/SVDAw/

share|improve this answer

Use

  jQuery(document).bind('keydown', function (evt){
    alert('Hello');
  });

You may test if quick using firebug console (run it). You now get an alert box everytime you push a button on the document. I used Firefox 3.6.13 to verify this.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.