How to disable browser print options for specific pages

Env: jQuery, richfaces, all major browsers

How to disable browser printing options for specific pages (e.g. File → Print Preview)

+3
source share
2 answers

You cannot disable actual menu items / items, but to prevent printing, use the following pages:

<style type="text/css" media="print">
BODY {display:none;visibility:hidden;}
</style>
+18
source

You cannot disable the print buttons of the browser, however you can use print @media CSS to completely hide some parts or the whole page from printing. For example, you can use CSS, for example:

@media print {
  html, body {
    display: none;  /* hide whole page */
  }
}
+2
source

Source: https://habr.com/ru/post/1757081/


All Articles