Embedded HTML Print Function not working

coopfab

New member
Good morning:

This small html instruction works in my browser but when it's embedded in our website, the button responds but it doesn't bring up the printer function.

<html>

<script>
function printpage()
{
window.print();


}
</script>
<body>
<p> Please print and fill out donation slip and mail with your donation. Thanks.</p>

<button onclick="printpage()">PRINT</button>
</body>
</html>

Any help you can give would be much appreciated. Thanks. Michael
 
Back
Top