I use jQuery-hotkeys
And the following code:
$(document).bind('keydown', 'ctrl+s', function(){$('#save').click()});
but I cannot disable the browser’s default behavior. How do I disable it?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It looks like you return false from your handler to disable “bubbling up” the event. So:
… but it may be browser specific. From your link: