Env: jQuery, richfaces, all major browsers
How to disable printing options in the browser for certain pages (e.g. File-->Print Preview, Print)
You cannot disable the actual buttons/menu items but you can use following in required pages to prevent printing:
<style type="text/css" media="print">
BODY {display:none;visibility:hidden;}
</style>
You can not disable the browser print buttons, however you can use print @media CSS to hide certain parts or whole page completely from printing. For example, you can use CSS such as this:
@media print {
html, body {
display: none; /* hide whole page */
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With