Ray's Asp.net Blog
Answers and code snippets from ASP.NET projects (Webforms/MVC/Classic ASP)
Pages
(Move to ...)
Event registration app with QR/Paypal
Home
▼
Friday, March 25, 2011
How to handle Keyboard Shortcuts/hotkey in ASP.NET by JQuery Hotkeys
Download from:
https://github.com/jeresig/jquery.hotkeys
$(document).bind(
'keydown'
,
'alt+ctrl+s'
,
function
() {
$(
'#elmentid'
).trigger(
'click'
);
});
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment