Wednesday, June 11, 2008

Disable Page Printing...


This is a Microsoft only solution and you should include these Attributes in your BODY Tag...

<body onBeforePrint="document.body.style.display='none'"; onAfterPrint="document.body.style.display='';">

This is a CSS cross-browser solution which should be included as a separate section in the HEAD of your page...
<style media='print'>
BODY { display:none;}
</style>

No comments: