Quote:
|
Originally Posted by KathieK
LOL, OK, I have no idea how to get that smiley face outta the code! But you can figure out what I meant!
|
use the [ code][/ code] (spaces added so it wouldn't actaully do it)
if you want to add another line in your code you can have it so theres a link to the page you want printed if the browser doesnt support it.
it being this:
Code:
<link rel="alternate" media="print" href="different_page.html" />
<script type="text/javascript">
function printWindow(){
bV = parseInt(navigator.appVersion)
if (bV >= 4) {
window.print()
}
else {
window.location="different_page.html";
}
</script>
<a href="javascript:printWindow()">Print The Different Page</a>
think that should work, you might have to debug but thats the general idea