$(window).keypress(function(event) {
     if (!(event.which == 115 && event.ctrlKey) && !(event.which == 19)) return true;
     alert("Ctrl-S pressed");
     event.preventDefault();
     return false;
 });
Keycodes can vary from browser to browser, so you may need to look for more than  115.