Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there any event in Jquery that's triggered only if the user hits the enter button in a textbox? Or any plugin that can be added to include this? If not, how would I write a quick plugin that would do this?

share|improve this question
Great question, a real brain stimulator too, as I have no idea how this is done. I Googled around a bit, found this: bennadel.com/blog/… Pretty complex, but it looks like it can be done, so you can have a custom event such as $.returnkey(). – CaptSaltyJack Jun 29 '11 at 17:04

5 Answers

up vote 25 down vote accepted

You can wire up your own custom event

$('textarea').bind("enterKey",function(e){
   //do stuff here
});
$('textarea').keyup(function(e){
if(e.keyCode == 13)
{
  $(this).trigger("enterKey");
}
});

http://jsfiddle.net/x7HVQ/

share|improve this answer
2  
Holy crap that's a harsh downvote. As far as I can tell he answered your question quite perfectly. Try being more specific in your question or posting comments rather than punishing those who make a valid attempt at helping you. – Adam Terlson Jun 29 '11 at 16:58
@Adam Terlson It's actually my mistake i misread the question. this is an edit – TheSuperTramp Jun 29 '11 at 16:59
It's pretty clear what he's asking. He wants a custom event so he can do something like: $('#myinput').returnkey(function() { .. }); – CaptSaltyJack Jun 29 '11 at 17:01
1  
@CaptSaltyJack -- see my answer for that implementation. – Neal Jun 29 '11 at 17:08
@ClickUpvote i guess u abandoned your plugin idea lol – Neal Jun 29 '11 at 17:14
show 2 more comments

Here is a plugin for you: (Fiddle: http://jsfiddle.net/maniator/CjrJ7/)

$.fn.pressEnter = function(fn) {  

    return this.each(function() {  
        $(this).bind('enterPress', fn);
        $(this).keyup(function(e){
            if(e.keyCode == 13)
            {
              $(this).trigger("enterPress");
            }
        })
    });  
 }; 

//use it:
$('textarea').pressEnter(function(){alert('here')})
share|improve this answer
Nice. Much simpler than that URL I posted. I wonder what the heck the article I posted is all about & why it takes so much code.. – CaptSaltyJack Jun 29 '11 at 17:10
Too late, I've already written my own :P. It also does the same job in less lines.. also, using the $ variable for the plugin isn't a good idea as it can cause conflicts. – Click Upvote Jun 29 '11 at 17:30
@ClickUpvote, wrapping it in a closure should fix that – Neal Jun 29 '11 at 17:34
@Neal, do you know how the code of the plugin I posted in the accepted answer would have to be changed, so that one could do $("#myInput").bind('click, onEnter', myCallback); and it would work without needing anything else? – Click Upvote Jun 29 '11 at 17:53
@ClickUpvote #1: remove it from the answer -- then we can talk. – Neal Jun 29 '11 at 17:54
show 5 more comments

heres a jquery plugin to do that

(function($) {
    $.fn.onEnter = function(func) {
        this.bind('keypress', function(e) {
            if (e.keyCode == 13) func.apply(this, [e]);    
        });               
        return this; 
     };
})(jQuery);

to use it, include the code and set it up like this:

$( function () {
    console.log($("input"));
    $("input").onEnter( function() {
        $(this).val("Enter key pressed");                
    });
});

jsfiddle of it here http://jsfiddle.net/VrwgP/30/

share|improve this answer
Nice, I'd call the callback using func.apply(this), that way inside the callback function you can use this as normal to access the element on which the event was triggered. – Click Upvote Jun 29 '11 at 17:52
yeah, good point about func.apply(this), had not even considered that. – jzilla Jun 29 '11 at 18:09
   $('#textbox').on('keypress', function (event) {
         if(event.which == '13'){

            //Disable textbox to prevent multiple submit
            $(this).attr("disabled", "disabled");

            //Do Stuff, submit, etc..
         }
   });
share|improve this answer

if your interested in a more elegant behavior you might like this script
in this script if the user press enter he saves the change,
if he presses escape the input returns to the last enter press.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="js/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
    $(document).ready(function() {
    $('.subtitle_auto_ajax').keyup(function(event) { 
       if (event.keyCode == 13) { 
            //For enter.
            //Your Ajax function here.
            //alert('enter, id: ' + event.srcElement.attributes.id.value);
            var id = event.srcElement.attributes.id.value;              
            //alert($('#'+id).val());
            event.srcElement.defaultValue = $('#'+id).val();
        }
        if (event.keyCode == 27) { 
            //For escape.
            //Your Ajax function here.
            //alert('escape, id: ' + event.srcElement.attributes.id.value);
            //alert('PlaceholderInst: ' + event.srcElement.defaultValue)
            var id = event.srcElement.attributes.id.value;
            $('#'+id).val(event.srcElement.defaultValue);
        }
    });
    });
</script>
</head>
 <body>
<input class="subtitle_auto_ajax" id="a1_text" name="a1.text"  type="text" value="Humidity - Middle"/>
<input class="subtitle_auto_ajax" id="a2_text" name="a2.text"  type="text" value="Stem"/>
<input class="subtitle_auto_ajax" id="a3_text" name="a3.text"  type="text" value="Fruit - Middle"/>                                         
</body>
</html>
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.