Hi I have build an Terms and Conditions sheet. (HTML) And added an print button. this one:
document.write("<input type='button' " +
"onClick='window.print()' " +
"class='printbutton' " +
"value='Print'/>");
Al good but when I print the page its also wants to print the navigation bar (ul)
How can i prefend that?
Create a stylesheet for printing only (using a media="print" attribute on the style element), and set display: none on the elements you don't want to have printed.