Return to Snippet

Revision: 44020
at April 5, 2011 04:17 by tutrinh211


Initial Code
$('.input').keypress(function(e) {
        if(e.which == 13) {
            jQuery(this).blur();
            jQuery('#submit').focus().click();
        }
});

Initial URL


Initial Description


Initial Title
jQuery enter key press form submission

Initial Tags
form, jquery

Initial Language
jQuery