Forum Moderators: open
the head part
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function leapto(form) {
var myindex=form.dest.selectedIndex
parent.infoframe.location.href=(form.dest.options[myindex].value);
// You can output to ANY frame using: parent.[framename].location.href
}
// End -->
</SCRIPT> the body part
<FORM NAME="myform">
<SELECT NAME="dest" onChange="leapto(this.form)" class="textstyle">
<OPTION SELECTED VALUE="">Choose A Link
<option value="bathroominfo.htm" >Bathroom</option>
<option value="kitcheninfo.htm">Kitchen</option>
<option value="extensioninfo.htm">Extension</option>
<option value="loftinfo.htm">Loft</option>
<option value="councilinfo.htm" >Council</option>
</SELECT>
</FORM> can someone point out to me what is missing here? how do i link a menu in iframe1 to display information in iframe2?