I'm using the jQuery Hotkeys plugin: http://code.google.com/p/js-hotkeys/
Here is the code i'm using:
$(document).bind('keydown', 'Ctrl+s', function(event) { alert('saving?'); return false; });
In Chrome it works fine and the Ctrl+s default functionality is over-ridden, but in Firefox it fires the alert and it also tries to save the html page.
I know there has to be someway to get it to work, Wordpress in Firefox let's you press ctrl+s to save.
Any ideas?