hi tom,
vielleicht kann dir mein script für ein dropdownmenue in einem anderen frame weiterhelfen.
wenn du weisst was die koordinaten bedeuten, kannst du es mit sicherheit abwandeln.
<script type="text/javascript">
<!--
function Go(x) {
if(x == "nothing") {
document.forms[1].reset();
document.forms[1].elements[0].blur();
return;
}
else if(x == "end")
top.location.href = parent.frames[1].location;
else {
parent.frames[3].location.href = x;
document.forms[1].reset();
document.forms[1].elements[0].blur();
}
}
//-->
</script>
mein ziel ist der 4.frame (nr. 3)
für x übergebe ich mein php file mit variablen:
<form action=""><select size=1 name="Auswahl"
onChange="Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)"
style="width:250px; background-color:#FFFFE0; font-size:9pt; font-family:Arial,sans-serif;"
width="250">
<option value="nothing">[ bitte auswählen! ]</option>
<option value="nothing">------------------------</option>
<option value="body.php?var1=Batterie/Akku">Batterie</option>
</select></td>
</form>
vielleicht hilfts dir
ralph