Page 1 of 1

How to hide the "print button" on printing page

Posted: Thu Nov 01, 2007 4:44 am
by vinoth
Hi all

I am using javascript print function to print the page, It was working fine.
But in the print outsheet it prints the button["Print the page"].
Any possible way to hide this on print sheet

Posted: Thu Nov 01, 2007 5:35 am
by VladSun

Code: Select all

                @media print
                {
                        #PrintButton
                        {
                            display: none;
                        }
                }


Posted: Thu Nov 01, 2007 6:46 am
by vinoth
Hi VladSun

Thanks for information you provided, Its working fine