I have a web page with two frames: upper frame and lower frame.
I would like to have a link on the upper frame that invokes a javascript to print the current screen on ONE page. But it doesn't work when I using the following script:
function GoPrint_FAI()
{
window.top.focus();
window.print();
}
This script gives me two-pages printout. One for upper and one for lower frame. But I want the upper and lower frame to be printed on ONE page. Please HELP! Thanks a lot!
Thanks for your reply. Regarding the situation described, can I set the "Print Frames" to "As laid out on screen" in the print dialogue box using javascript?
Bookmarks