Web Hosting Offers
See the new scripts recently added to Dynamic Drive. Click here.
Original, practical CSS codes and examples such as CSS menus for your site.
    Search code samples  
 
  Keyword
 
 
 
   
 
 
  Code Samples
 
ASP
CSS
Dhtml
Html
Javascript
PHP
 
   
     LOGIN HERE  
 
Username
Password
Forgot Password
Verify Signup
 
 
 

Javascript >> Events

Can I capture the Delete key?

Visitor Ratings (1) :

Description
NN6 is leading here as it fires onkeydown, onkeypress, and onkeyup
for the delete key. You can check event.which == 46 to find that key.

IE5 is firing onkeydown and onkeyup but not onkeypress for the delete
key. You can check event.keyCode == 46 to find the key.

Finally NN4 seems to fire only onkeyup for the delete key but unfortunately event.which is 0 in that case which makes it impossible to recognize the key.
Code
Select All
 Rate this Resource