Forum Moderators: open
The pop-up window has two frames: a frame for the contacts and a frame with a print button and a close button. I've been able to print the main frame if there aren't any DIVs present and if there is only one DIV present with the following function:
function MyPrint()
{
parent.mainFrame.focus();
parent.mainFrame.print();
}
What I want to do is modify the above function to print all the DIVs in my pop-up window. I've done a TON of searching on Google and have been unable to find anything that might point me in the right direction. I really need some help. Thanks in advance!