I have the following snippet of code:

$('#messages input').live('keydown', function(e){
  if(e.keyCode == 13) {
    alert($(this).attr('value'));
    e.preventDefault();
    return false;
  }
});

where "#message input" is obviously a group of input text elements. I want to catch the "enter" key and prevent it from refreshing the page. However, it fails every time. The alert works fine, but it seems that the preventDefault() isn't working.

Anyone have any ideas?

Edit: I should have mentioned that I'm working in ASP.NET, and it's inside a form element. Removing it from the form element solves the problem, but I'd like to know why preventDefault() isn't working.

link|improve this question

2  
alert can do strange things to JS behavior, as it is a modal, blocking call. Try changing it to use console.log and see what happens. (Your code should work) – kevingessner Oct 7 '10 at 21:21
Thanks kevin, came to the same conclusion myself, and that was indeed the issue. – jvenema Oct 9 '10 at 21:34
feedback

5 Answers

Might try an

e.stopPropagation()
link|improve this answer
The e.stopPropagation() method usually doesn't do anything for you with .live(). Since the event is attached to the document, there's really no more event bubbling to stop. Unless there's some use for it in conjunction with e.isPropagationStopped()? I can't imagine, though. – user113716 Oct 7 '10 at 21:26
patrick is correct, live can't stop propagation by definition, since it's attached to the body. – jvenema Oct 8 '10 at 12:42
Yep, didn't think about using live instead of bind. – jps Oct 8 '10 at 16:06
feedback

I think forms are submitted on keypress, not on keydown. Try

$('#messages input').live('keypress', function(e){
  if(e.keyCode == 13) {
    alert($(this).attr('value'));
    e.preventDefault();
    return false;
  }
});
link|improve this answer
feedback
up vote 0 down vote accepted

Ironically, it was the alert itself that was causing the problem.

AFAICT, the alert would halt the JavaScript execution before the preventDefault() could take effect, but the browser continued processing the keystroke, triggering a form submission.

Weird, but there you have it.

link|improve this answer
feedback
$('#form_deal_step1').live('submit',function(){
        $('.column .column_child select').not(':hidden').each(function(ev){
             if($(this).val()=='?')
             {
                 alert('Please select the ages of each child.');
                 ev.preventDefault();
                 return false;
             }
          });
})
var age_selected=1;
$('.column .column_child select').not(':hidden').each(function(){
    if($(this).val()=='?')
    {                
        age_selected=0; 
    }
});
if(age_selected==0)
{
    alert('Please select the ages of each child.');
    return false;
}
link|improve this answer
the code above var age_selected=1; is not preventing from page reload .Hence a code from var age_selected=1; is a so different way for the same – Sunny Patwa Dec 28 '11 at 10:27
feedback

As far as I'm aware the page refresh is a default function of the form not the input button and as such you should be preventing default on the form rather than the input.

Something along the lines of:

$('#target').submit(function() {
  return false;
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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