Forum Moderators: open
I assume you mean you have a frameset, with a page within a frame that contains a form, and you need the Content frame page to change depending on the input of that form.
Broadly speaking, give your frames useful names. Maybe navframe, mainframe.
On the page with the form you need something like
<script>
function go()
{
mainframe.location.href=document.theform.search.value +".html"
}</script>
<form name=theform>
<input type=text name=search>
<input type=button value=gogo onclick="go()">
</form>
This changes the mainframe document to whatever you enter in the Search box on the form.
Eg home
would load up home.html
Hope this helps
If that's the case, you can refresh the main window with code in the new window by using window.opener.reload()
Note that the method is reload() and NOT refresh() which addresses the plug-in list.