// Ctrl + S save document.onkeyup = function(e) { // 83 is the keycode for S if (e.ctrlKey && e.which == 83) { //Ctrl+S Pressed! } };