How to find shortcut exist on page using jquery?
Posted
by Pankaj
on Stack Overflow
See other posts from Stack Overflow
or by Pankaj
Published on 2010-04-20T12:45:28Z
Indexed on
2010/04/20
12:53 UTC
Read the original article
Hit count: 209
jQuery
|shortcut-key
Hello All
I added shortcut key on my control using jquery.
$(function() {
shortcut.add("ctrl+r", function() { SomeFunctionHere(); });
});
how can i find that this key already added in my control?
© Stack Overflow or respective owner