K
Ken D.
I am using the following code to display a "print this page" link but I only
want the link to show on the screen, not on the hard copy.
What am I missing?
*****************************************
In Header:
<script>
function printWindow(){
bV = parseInt(navigator.appVersion)
if (bV >= 4) window.print()
}
</script>
In Body:
<a href="javascriptrintWindow()"><font size="2">Print This Page</font></a>
***********************************************************
want the link to show on the screen, not on the hard copy.
What am I missing?
*****************************************
In Header:
<script>
function printWindow(){
bV = parseInt(navigator.appVersion)
if (bV >= 4) window.print()
}
</script>
In Body:
<a href="javascriptrintWindow()"><font size="2">Print This Page</font></a>
***********************************************************