printer friendly icon

  • Thread starter Thread starter c
  • Start date Start date
C

c

There must be a simple solution. How do I add this to my
web page? I already have it formatted to be printable so
I don't need CSS. Just want to make it easy for the user
with the icon.
 
One way is:
<script type="text/javascript" language="JavaScript"><!--
document.write("<a href='javascript:window.print();'><image src='image.gif'
alt='print page'></a>");
//--</script>
Note that document.write...../a>"); should all be on one line.
 
Back
Top