Pulldown und Frames
TomS,
- javascript
Hallo,
Ich habe mir aus einem Script-Archiv dieses Drop-Down Menu besorgt, finde aber nich heraus wo ich target="main" festlegen kann?
Noch eine Frage: Kann mann solche select-Boxen (z.B mit IE-Filtern) transparent machen? Bei meinen versuchen ging es nicht!
Quelltext (Auszug) :
...
<script language="JavaScript">
function goToURL(form)
{
var myindex=form.dropdownmenu.selectedIndex
if(!myindex=="")
{
window.location.href=form.dropdownmenu.options[myindex].value;
}
}
</script>
[...]
<form name="dropdownmenu" target="main">
<select name="dropdownmenu" size=22 onChange="goToURL(this.form)">
<option value="k12.html">@ Symbol (40)</option></option>
<option value="k171.html">3d_Objekte (21)</option>
<option value="k137.html">Affen (36)</option>
<option value="k134.html">Aliens (32)</option>
<option value="k123.html">Ampeln (24)</option>
<option value="k167.html">Feuerwerk (10)</option>
<option value="k13.html">Fische (9)</option>
<option value="k35.html">Fledermäuse (6)</option>
</select></form>
...
Hi Tom,
So sieht mein Savascript aus.
<script language="javascript" type="text/javascript">
<!--
function surfto(form) {
var myindex=form.select1.selectedIndex
if (form.select1.options[myindex].value != "0") {
window.open(form.select1.options[myindex].value, target="oben2");}
}
//-->
</SCRIPT>
mfg Eregister