Microsoft Techies
Microsoft information center.
Showing posts with label
Capturing “Delete” Keypress with jQuery
.
Show all posts
Showing posts with label
Capturing “Delete” Keypress with jQuery
.
Show all posts
Thursday, 7 August 2014
Capturing “Delete” Keypress with jQuery
$('html').keydown(function (e) {
if (e.keyCode == 46) {
alert('You pressed delete key');
}
})
Older Posts
Home
Subscribe to:
Posts (Atom)