You are here: irt.org | About | Feedback | 4489 [ previous next ]
Feedback on:
irt.org FAQ Knowledge Base Q1403
Sent by
Kelson on Wednesday April 25, 2007 at 18:25:53
Worth:
Length:
Technical:
Comments:
In modern browsers, this is simple with CSS. Assign the button a class, say
<INPUT class="noprint" type="button" name="btnPrint" onClick="Javascript: doPrint()" value="Print">
Then in your stylesheet, include the following:
@media print {
.noprint {display:none}
}
You can add the same class to anything else that you want to hide during printing.
Other feedback on 'irt.org FAQ Knowledge Base Q1403' - show all