1christine
12-22-2003, 02:37 PM
I've got this code to run, but need to work around the security features in the browser:
parent frame:
<!-- SiteNavigator.html -->
<HTML>
<HEAD>
<TITLE>Site Navigator</TITLE>
</HEAD>
<FRAMESET ROWS="75%,25%">
<FRAME SRC="" NAME="main">
<FRAME SRC="Controls.html" NAME="controls">
</FRAMESET>
</HTMl>
second frame:
<!-- Controls.html -->
<HTML>
<BODY>
<FORM NAME="controls">
URL Address:
<INPUT TYPE="text" NAME="newURL">
<INPUT TYPE="button" NAME="goto" VALUE=" Go To "
onClick="parent.main.location.href=document.controls.newURL.value;">
<INPUT TYPE="button" NAME="next" VALUE=" Next URL "
onClick="parent.main.history.forward();">
<INPUT TYPE="button" NAME="previous" VALUE=" Previous URL "
onClick="parent.main.history.back();">
</FORM>
</BODY>
</HTML>
parent frame:
<!-- SiteNavigator.html -->
<HTML>
<HEAD>
<TITLE>Site Navigator</TITLE>
</HEAD>
<FRAMESET ROWS="75%,25%">
<FRAME SRC="" NAME="main">
<FRAME SRC="Controls.html" NAME="controls">
</FRAMESET>
</HTMl>
second frame:
<!-- Controls.html -->
<HTML>
<BODY>
<FORM NAME="controls">
URL Address:
<INPUT TYPE="text" NAME="newURL">
<INPUT TYPE="button" NAME="goto" VALUE=" Go To "
onClick="parent.main.location.href=document.controls.newURL.value;">
<INPUT TYPE="button" NAME="next" VALUE=" Next URL "
onClick="parent.main.history.forward();">
<INPUT TYPE="button" NAME="previous" VALUE=" Previous URL "
onClick="parent.main.history.back();">
</FORM>
</BODY>
</HTML>