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

HTML code:

<input type="text" id="secrecy" name="secrecy" size="3" maxlengh="3" />Days

Jquery code:

$('#secrecy').keyup(function(){
alert("ok");    
});

Error message:

The 'charCode' property of a keyup event should not be used. The value is meaningless.

The Jquery code doesn't work.When I input something into "secrecy", an alert doesn't come out.What's wrong?

share|improve this question

6 Answers

up vote 8 down vote accepted

Are you waiting to bind the event until the Dom is ready?

Something like this might help:

$(document).ready(function(){
  $('#secrecy').keyup(function(){
    alert("ok");    
  });
});
share|improve this answer
1  
Thank you,@samg. – Steven Dec 1 '09 at 5:39
1  
.. I am having the same problem and my code is indeed inside $(document).ready(function() {...}); and it still gives me the error. Any other suggestions? – Hristo Jun 18 '10 at 13:47
I have the exact same problem here :( (Firefox 3.6.8, Ubuntu 10.04) – Fu86 Sep 8 '10 at 20:53

I tested your code and didn't see the error you mentioned, could you provide code that reproduces this error?

I was thinking that it could just be the browser you are using...

keyCode and charCode

The two properties are keyCode and charCode. Put (too) simply, keyCode says something about the actual keyboard key the user pressed, while charCode gives the ASCII value of the resulting character. These bits of information need not be the same; for instance, a lower case 'a' and an upper case 'A' have the same keyCode, because the user presses the same key, but a different charCode because the resulting character is different.

Explorer and Opera do not support charCode. However, they give the character information in keyCode, but only onkeypress. Onkeydown and -up keyCode contains key information.

From quirksmode site, but I don't see you using either in your example code. Are you using them?

share|improve this answer
It is in Firefox in firebug. I don't believe i'm trying to use charCode or keyCode anyway intentionally in my code. – willdanceforfun Apr 11 '11 at 22:47

That's not an error; it's a warning.

It's probably generated by code within jQuery that copies the properties of the event object to a wrapper that gets passed to your handler.

You should ignore it.

share|improve this answer
I can not ignore it. When I input something in “secrecy", an alert doesn't come out. The Jquery code doesn't work. – Steven Dec 1 '09 at 4:19
1  
Then something else is wrong. Are you running the code before the page is fully loaded? Can you post a demo? – SLaks Dec 1 '09 at 4:21
The other part of Jquery code works fine. – Steven Dec 1 '09 at 4:24

change charCode -> XcharCode in source jquery-1.X.X.js and everything works OK

in the lastest version 1.4.4 there are "4" ocurrences...

share|improve this answer
Interesting. What is that doing exactly? :) – willdanceforfun Apr 11 '11 at 22:46

i've a trouble too. I assign event to but there not work!

$(document).ready(function(){ $("#test ul").bind("keyup",function(){ alert('Handler for .keyup() called.'); });

})

share|improve this answer

I followed Diego's advice and the warnings went away in Firebug. Also saw the same advice here. http://api.jquery.com/keyup/#comment-108497941

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.