Sunday, February 3, 2013

jquery key press



$('#textbox').keyup(function (e) {
    if (e.keyCode == 13) {
        alert('Enter key pressed!');
    }
});

or

$(document).keypress(function(e) {
    if(e.keyCode == 13) {
        alert('Enter key pressed!');   
    }
});

Key             Keycode
Enter             13
Up arrow             38
Down arrow         40
Left arrow         37
Right arrow         39
Escape             27
Spacebar             32
Ctrl             17
Alt             18
Tab             9
Shift             16
Caps-lock         20
Windows key         91
Windows option key        93
Backspace         8
Home             36
End             35
Insert             45
Delete             46
Page Up             33
Page Down         34
Numlock             144
F1-F12             112-123
Print-screen         ??
Scroll-lock         145
Pause-break         19

No comments:

Post a Comment