Print Page Button - Add a Print Page Button to your page.
Compatible Browsers:
Chrome BrowserFirefox BrowserInternet Explorer BrowserOpera BrowserSafari Browser
<html> <head> <title>Print Page Button Code Snippet</title> <script> <!-- Begin Print Page Button Found In The https://snapbuilder.com Free Public Codes Library function varitext(text){ text=document print(text) } // End --> </script> </head> <body> <form> <input name="print" type="button" value="Print this Document!" onClick="varitext();"> </form> </body> </html>