Target an iframe for printing

admin

Administrator
Staff member
I am not able to target the iframe for printing. The print icon is working but it is printing the whole page (main page & iframe). When printing using this icon some of the iframe's content is cut off. The code works if I placed the printer icon and script on the page within the iframe but it isn't working when I try to target it from the main page using the script below. Please Help...


<script language=javascript>
<!-- Begin
function printWindow() {
bV = parseInt(navigator.appVersion);
if (bV >= 4) document.main_content.print();
}
// End -->
</script>


<body>
<iframe name= "main_content" frameborder= "0" scrolling="auto" marginheight= "1" align="top" height = "100%" WIDTH="100%" src=http://www.webdeveloper.com/forum/archive/index.php/"http://ednat.sce.com/gid/redirect.shtml"></iframe>
<a href="javascriptrintWindow()"><img src="images/5xp_right_placeholder4.gif" width="136" height="70" border="0" alt="Print This Page"></a>
</body>
 
Back
Top