Simple Print Button by eckert
Want to have a “Print this Page” button?
Use the following code:
<form> <input onclick="window.print();return false;" type="button" value=" Print this page " /></form>
Basically, it’s just a shortcut to the file print button, but some people can’t figure that one out I guess.
Here’s what it should look like;
You can change the value so that it says whatever you want. One option would be the following:
October 21st, 2008 at 7:35 am
Very nice.