I have a function that resizes the col
width ratio of my frameset
in "frame.html":
<frameset id="set" cols="*,*" FRAMESPACING=0 BORDER=3 BORDERCOLOR=#eeeeee>
<frame src="index.html">
<frame src="index2.html">
<noframes></noframes>
</frameset>
The function works fine when called from "frame.html", However i want to call said function from the child file "index.html"... the function needs to remain in the parent file in order to run properly... How can I call my function in frame.html
from index.html