I have a page with an iframe in it. The iframe\'s content is a couple of pages long, I\'ve set the iframe\'s height to match it\'s content. When I try to print the page, the
Just an idea: Do a focus on your ifame before print:
var myf = document.getElementById("myiframe"); var contentWindow = myf.contentWindow; contentWindow.focus(); contentWindow.print();