Hello,
I have the main page that contains multiple frames within the frameset. One of the frames is a toolbar with buttons, I would like to be able to press a button on that toolbar and it will go and hide one of the frames on the main page.
I've tried the following from within the toolbar frame but it doesn't work...
$(document).parent.$("#other_frame").hide("slow");
I'm REALLY new to jQuery and after searching the web I'm pretty much lost.
Thank you for your help.
EDIT: My complete main page
<frameset frameborder="0" rows="70, *">
<frame name="toolbar" src="toolbar.html" marginwidth="8px" marginheight="8px" />
<frameset id="lineNumFrameset" frameborder="0" cols="50, *">
<frameset rows="*, 16">
<frame id="other_frame" name="lineNum" src="lineNum.html" marginwidth="8px" marginheight="8px" align="top" />
</frameset>
<frame name="editor" src="editor.html" marginwidth="8px" marginheight="8px" />
</frameset>
</frameset>