easy JS question
easy JS question
Out of context: Reply #10
- Started
- Last post
- 10 Responses
- heavyt0
much easier way is to define an alt style sheet.
set the: media=print
then, your browser will automatically use the sheet for printing. IT is completely transparent to the user. They click 'print' , and it automatically switches to a diff. stylesheet.
In that sheet, you do stuff like:
#nav{display:none;}
#content{background-color:#fff;}etc
TR1