Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Capturing "Delete" Keypress with jQuery

When using the example code from the jQuery documentation for the keypress event handler, I'm unable to capture the Delete key. The snippet below is going to log 0 when the Delete key is pressed in FireFox:

$(document).keypress(function(e) {     console.log(e.which);        }); 

Seems there's gotta be a way to capture the Delete key, but it's an ambiguous term so Google isn't proving to be much help with it.

like image 964
Shane H Avatar asked Jul 12 '09 15:07

Shane H


1 Answers

You shouldn't use the keypress event, but the keyup or keydown event because the keypress event is intended for real (printable) characters. keydown is handled at a lower level so it will capture all nonprinting keys like delete and enter.

like image 52
Philippe Leybaert Avatar answered Oct 03 '22 00:10

Philippe Leybaert