My users would like to be able to hit Control+S to save a form. Is there a good cross-browser way of capturing the Ctrl+S key combination and submit my form?
App is built on Drupal, so jQuery is available.
|
My users would like to be able to hit Control+S to save a form. Is there a good cross-browser way of capturing the Ctrl+S key combination and submit my form? App is built on Drupal, so jQuery is available.
| ||||
|
feedback
|
Key codes can differ between browsers, so you may need to check for more than just 115. | |||||||||||||||||
feedback
|
|
You could use a shortcut library to handle the browser specific stuff. http://www.openjs.com/scripts/events/keyboard_shortcuts/#
| |||||
feedback
|
|
I like this jQuery plugin. Fairly simple & short
| |||||||||
feedback
|
|
I would like Web applications to not override my default shortcut keys, honestly. Ctrl-S already does something in browsers. Having that change abruptly depending on the site I'm viewing is disruptive and frustrating, not to mention often buggy -- I've had sites hijack Ctrl-Tab because it looked the same as Ctrl-I, both ruining my work on the site and preventing me from switching tabs as usual. If you want shortcut keys, use the | |||||||||||
feedback
|
|
Problem with the shortcut method is that it may interfere with the functioning of screen readers. | |||||
feedback
|
|
I like this little plugin here .. needs a bit more cross browser friendliness though: | |||
|
feedback
|
|
This one worked for me on Chrome...
for some reason
If anyone knows why I get 83 and not 115, I will be happy to hear, also if anyone tests this on other browsers I'll be happy to hear if it works or not | ||||
|
feedback
|
|
@Eevee: As the browser becomes the home for richer and richer functionality and starts to replace desktop apps, it's just not going to be an option to forgo the use of keyboard shortcuts. Gmail's rich and intuitive set of keyboard commands was instrumental in my willingness to abandon Outlook. The keyboard shortcuts in Todoist, Google Reader, and Google Calendar all make my life much, much easier on a daily basis. Developers should definitely be careful not to override keystrokes that already have a meaning in the browser. For example, the WMD textbox I'm typing into inexplicably interprets Ctrl-Del as "Blockquote" rather than "delete word forward". I'm curious if there's a standard list somewhere of "browser-safe" shortcuts that site developers can use and that browsers will commit to staying away from in future versions. | |||||
feedback
|
|
example: shortcut.add("Ctrl+c",function() { alert('Ok...');},{ 'type':'keydown', 'propagate':false, 'target':document }); usage link for download: http://www.openjs.com/scripts/events/keyboard_shortcuts/# | |||
|
feedback
|
|
This should work (adapted from http://stackoverflow.com/a/8285722/388902).
| |||
|
feedback
|