Prevent printing of a pageTag(s): HTML/CSS

These tips will only make it harder.
[IE]
  <BODY onBeforePrint="document.body.style.display = 'none';"
        onAfterPrint="document.body.style.display = '';">
or
<style type="text/css">
@media print {
   BODY { display: none !important;}
}
</style>
Remember, it's still easily defeatable but it should be effective in making it a little bit harder!

See also this HowTo and this one.




If you find this article useful, consider making a small donation
to show your support for this Web site and its content.

Written and compiled by Réal Gagnon ©1998-2011
[ home ]