I'm trying to add a print button to a web page that only prints one section of the page. The section that needs printing is an inline frame (I1) however I can only get it to print out the whole page. Here is the code I have so far:
What do I need to change to get it to work? Any help would be appreciated.
Code:
<form><input type="button" value="Print"
onclick="window.print();return false;" /></form>
What do I need to change to get it to work? Any help would be appreciated.