HTML & CSS Snippets
Name:Print Page
Description: Print the content of a webpage using javascript, this will popup the print dialog box.
Code below...
<form> <input type="button" value="Print this page" onclick="window.print()"/> </form>
Name:Print Page
Description: Print the content of a webpage using javascript, this will popup the print dialog box.
<form> <input type="button" value="Print this page" onclick="window.print()"/> </form>