Here I tried to disable the Ctrl+P but it doesn\'t get me alert and also it shows the print options
jQuery(document).bind(\"keyup keydo
Try this
//hide body on Ctrl + P jQuery(document).bind("keyup keydown", function (e) { if (e.ctrlKey && e.keyCode == 80) { $("body").hide(); return false; } });