How to disable all keys using jQuery except backspace?

I can successfully stop all keystrokes:

$this.keydown(false);

How to disable all keys except backspace key?

+4
source share
2 answers

Check the keyCode the event argument:

 $this.keydown(function(e) { if(e.keyCode !== 8) { e.preventDefault(); } }); 

Here is a demo.

+13
source

Use a callback, check the key code of the pressed key if it is a backspace key, and then enable it, otherwise block it.

+1
source

All Articles