Sorry, I know this is straightforward but after battling it for multiple hours, I need to go ahead and ask y'all.
Simple frameset, three frames named topframe, mainframe, and bottomframe. "mainframe" has multiple anchors in it (e.g. <a name="12748"></a>). "bottomframe" has a simple navigation menu that looks like this:
And the function it refers to looks like this:
(I had that as an eval(), but don't think I need it in modern IE, where this form will be exclusively used.)
What I want to happen is for the mainframe to just shift to the requested anchor. What actually happens is bottomframe's page is loaded into mainframe.
Again, sorry the question is so basic, but any help would really be appreciated.
Simple frameset, three frames named topframe, mainframe, and bottomframe. "mainframe" has multiple anchors in it (e.g. <a name="12748"></a>). "bottomframe" has a simple navigation menu that looks like this:
Code:
<form name="jump">
<select name="sections" onChange="jumpMenu(this)">
<option value="#formmain">Go to Top</option>
<option value="#12748">Option A</option>
<option value="#9980">Option B</option>
</select>
</form>
Code:
function jumpMenu(selObj) {
parent.mainFrame.location=selObj.options[selObj.selectedIndex].value;
}
What I want to happen is for the mainframe to just shift to the requested anchor. What actually happens is bottomframe's page is loaded into mainframe.
Again, sorry the question is so basic, but any help would really be appreciated.