Remove document.getElementById('print').style.display='none'; from your printpage() function.
In the above case the button will be visible for another click event but when you will print the document, the button will be shown on printed document. Am I right?
To prevent printing the print button you need to use css media queries @media print
Add following in your extrernal stylesheet OR in <style> tag inside a <head> tag of the HTML page:
@media print {
.noprint { display: none; }
}
and add .noprint class on
<input name="print" class="noprint" type="submit" id="print" value="PRINT" onclick="printpage()" />
SEE DEMO
It will print the document without printing the button and your button will also be visible for the second time click :-)
EDITED:
USE HTML AS GIVEN BELOW:
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<!-- Your Stylesheet (CSS) -->
<style type="text/css">
@media print {
.noprint { display: none; }
}
</style>
<!-- Your Javascript Function -->
<script>
function printpage() {
window.print();
}
</script>
</head>
<body>
<!-- Your Body -->
<p>Only This text will print</p>
<!-- Your Button -->
<input class="noprint" type="button" value="PRINT" onclick="printpage()" />
</body>
</html>
SEE ABOVE CODE IN ACTION
document.getElementById('print').style.display='block';afterwindow.print();– MiDo Jul 31 '12 at 10:54