Print Window (Javascript)
By
William Thomas
|
Thursday, December 1, 2011
Hide Comments
Code:
<html>
<head>
<script>
function p
()
{
window
.
print
()
;
}
</script>
<body>
<input onClick=
"p()"
type=
"button"
value=
"Print!"
>
</body> </html>