|
|
|
JAVASCRIPT - Print This Page
|
1.) Add this code segment to your html code between the
<Head></Head> tags.
<script language="Javascript1.2">
<!--
function printWindow(){
browserVersion = parseInt(navigator.appVersion)
if (browserVersion >= 4) window.print()
}
// -->
</script>
2.) Add this code segment to your html code between the
<Body></Body> tags.
<a href="javascript:printWindow()">Print This Page</a>
|
|
|
|
|
|