Click here to Skip to main content
15,896,153 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi,

I show the one image on my webpage, and below the image i give the 'print' button for printing this page. but after the printing the page this 'print' button also visible on printing page. if i disable this button after printing they not display on printing page also on webpage.

but i want again this button on webpage after printing,

please help me, give me one solution for this.


Thank you.
Posted

1 solution

When you press the 'print' button, set the display property of the print button as hidden using JavaScript. When the print page is closed and you are back to main page, refresh it and show back the button.

JavaScript
//hide
document.getElementById("myPrintButton").style.display = "hidden";
// show
document.getElementById("myPrintButton").style.display = "block";
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900