Microsoft Techies
Microsoft information center.
Thursday, 7 August 2014
Capturing “Delete” Keypress with jQuery
$('html').keydown(function (e) {
if (e.keyCode == 46) {
alert('You pressed delete key');
}
})
Newer Post
Older Post
Home