I put an iframe for my all 100pages, and i want to add "Print" button to that iframe. So that every page has a button in it from iframe. But when click Print button only prints iframe page. I want to print whole seeing page.
<input type="button" value="Print" onclick="window.self.print();" />
or
<input type="button" value="Print" onclick="parent.window.focus();" />
I tried several codes but nothing works.