Inic - Youname.com for only $12.50
Youname.com for only $12.50



This script allows the user to print the page with a click of a button. This is for people who don't want to press the print button at the top of the browser. I don't really know why people want it, but this script is highly requested.
The source..


<script language="Javascript1.2">
<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var message = "Print this Page";

function printpage() {
window.print();  
}

document.write("<form><input type=button "
+"value=\""+message+"\" onClick=\"printpage()\"></form>");

//-->
</script>

Color coding..


This is the message that you want the print button to contain.
Nic's JavaScript Page