Hey all! I have a frameset with two frames, and want to have a button in one
frame call print() in the other one:
This is the layout:
<frameset rows="*,40" frameborder="NO " border="0" framespacing="0 ">
<frame src="..." name="pritableT ext">
<frame src="..." name="printButt on" scrolling="NO" noresize>
</frameset>
And, in printButton, I got this code:
<a href="#" onClick="parent .printableText. focus();
parent.printabl eText.print();" >Print the page</a>
However, nothing happens in Netscape (7.01) and Firefox (0.8), and in IE (6)
I get an "error in the script". However, I do not identify the error.
Does anyone have a clue onto what's happening?
Thanks in advance,
Nicolas Sanguinetti
frame call print() in the other one:
This is the layout:
<frameset rows="*,40" frameborder="NO " border="0" framespacing="0 ">
<frame src="..." name="pritableT ext">
<frame src="..." name="printButt on" scrolling="NO" noresize>
</frameset>
And, in printButton, I got this code:
<a href="#" onClick="parent .printableText. focus();
parent.printabl eText.print();" >Print the page</a>
However, nothing happens in Netscape (7.01) and Firefox (0.8), and in IE (6)
I get an "error in the script". However, I do not identify the error.
Does anyone have a clue onto what's happening?
Thanks in advance,
Nicolas Sanguinetti
Comment