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

Can anybody tell me why is this not working?

  <input name ="txtChat" id ="txtChat" onkeydown ="isEnterPressed();"  type="text" style="width:720px;"/>

This is my javascript function :-

 function isEnterPressed(event){
                alert(event);

            }

On alert i always gets undefined :(

Thanks in advance :)

share|improve this question

2 Answers

up vote 4 down vote accepted

There is no built-in event type that is fired when the enter key is pressed, you need to check that in the Event object that is passed to the handler.

HTML:

<input name ="txtChat" id ="txtChat" onkeyup="onKeyPressed(event)"  type="text" style="width:720px;"/>

JavaScript:

function onKeyPressed(ev) {
   var e = ev || event;
   if(e.keyCode == 13) {
      //Enter was pressed
      return false; //prevents form from being submitted.
   }
}
share|improve this answer
Thanks Jacob Relkin, now its working and enter key is captured. But i am facing another problem now. The page reloads as soon as i press enter key :(. Any idea, why is this happening? I have a form tag and this is causing problem. As soon as i remove it, it works fine. How do i get rid of this problem? – TCM Aug 1 '10 at 3:21
Yes, this is because the form is being submitted by default. I'll edit my answer. – Jacob Relkin Aug 1 '10 at 3:23
Thanks Jacob :) – TCM Aug 1 '10 at 3:24
Great Jacob except that return false should be inside e.keyCode ;). – TCM Aug 1 '10 at 3:26
@Nitesh, you're right. – Jacob Relkin Aug 1 '10 at 3:32

A very simple inline check is:

<input name ="txtChat" id ="txtChat" onkeydown ="alert(event.keyCode == 13);"  type="text" style="width:720px;"/>

which outputs true if enter is pressed.

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.