's Blog

Look at the sky, it's so beautiful

e.keyCode When Ctrl Pressed

| Comments

e.keyCode may be 13 or 10
1
2
3
4
5
6
7
8
9
10
textarea.bind('keypress', function (e) {
    /**
    * Some browsers will send keyCode == 10 instead of keyCode == 13 when using the ctrl modifier key
    * (some browsers will send it even when you aren't using the ctrl modifier key).
    */
    if (e.ctrlKey && (e.keyCode === 13 || e.keyCode === 10)) {
        //do something
        e.preventDefault();
    }
});

Comments