Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

printing an iframe

Status
Not open for further replies.

sammyroo

Technical User
Jul 10, 2002
4
GB
I wonder if anyone knows how to do this?
I have a page that contains an Iframe. I am trying to get a print button on the main page to print the contents of an iframe. I have setfocus() (i think) but still it prints the whole page. can one help? code would be useful.
 
Can you post a sample of the code your using? or a mock up? I think I might be able to help.

Humble Seeker
 
Try this,

function printit(){
document.frames.anIframe.window.focus();
document.frames.anIframe.window.print();
}

Sharapov
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top