Yes, you can listen to various keyboard shortcuts using javascript and disable the default behavior. There is even a library that you can use and test here . I just tested it with google chrome and firefox in my demo file and it works as you wish.
shortcut.add("Ctrl+P",function() { return; });
This works in the browsers listed above, but IE will not allow you to override the default behavior in some cases.
The only option in IE is to completely disable the Ctrl key, for example:
document.onkeydown = function () { if (event.keyCode == 17) alert('Ctrl Key is disabled'); };
Which is not perfect and probably not what you want, but it will work.
Keith bentrup
source share