Access denied error (Needs Print functionality)
I want to print different domain's pages print that are opened in Iframe.
I need some solution regarding this.
I am not able to find any solution till now. I am getting "denied access error" .Want to get print of google.com's page.
I created simple 3 files started.html,A.html,B.html
*********
started.html
<HTML>
<HEAD>
<script>
function PrintFrame()
{
windowrames["A"].focus();
window.frames["A"].print();
}
</script>
</HEAD>
<BODY>
</BODY>
</HTML>
<A HREF="#" onclick="PrintFrame()">Print</A>
<IFRAME SRC="A.html" NAME="A" ></IFRAME>
<br><br><br><br><A HREF="B.html" target=A>Click here</A>
*************
*************
A.html
<HTML>
<BODY>
Here i am in window A <a href=http://google.com>google</a>
</BODY>
</HTML>
*************
*************
B.html
<HTML>
<BODY>
Here i am in window B <a href=http://google.com>google</a>
</BODY>
</HTML>
|