I have a jump menu that currently fills the main window with a page. That works fine. But what I'd really like to do is send multiple pages into multiple frames when one of the menu items is selected (i.e. When Page 1 is selected it sends Page1a.html to frame a; Page 1b.html to frame b, etc.). Does anyone know how I can do this? Here is what I have so far...
<form name="form2" method="post" action="">
<div align="left">
<select name="select" class="pmtext1" onChange="MM_jumpMenu('parent',this,0)">
<option value="page1.html" selected>Page 1</option>
<option value="page2.html">Page 2</option>
</select>
</div>
</form>
<form name="form2" method="post" action="">
<div align="left">
<select name="select" class="pmtext1" onChange="MM_jumpMenu('parent',this,0)">
<option value="page1.html" selected>Page 1</option>
<option value="page2.html">Page 2</option>
</select>
</div>
</form>