By pressing Ctrl key, the following function executes:
$(document).on('keydown', null, 'Ctrl+s', function(){
console.log('Ctrl+S');
return false;
});
it should work by pressing Ctrl+S at same time, but it's working by pressing Ctrl key only. any clue?