ich habe ein kleines Javascript (dropDown Menü)
das ist auf Frames abgestimmt, dummerweise gibt es jetzt keine Frames mehr...
EDIT: http://www.raunzer.world-of-rpg.net/php ... er.php?m=4
hier der Code
Code: Alles auswählen
<script type="text/javascript">
<!--
function Go(x) {
if(x == "nothing") {
document.forms[0].elements[0].blur();
return;
}
else {
parent.frames[0].location.href = x;
document.forms[0].elements[0].blur();
}
}
//-->
</script>
<center><form action=""><select size=1 name="Auswahl"
onChange="Go(this.form.Auswahl.options[this.form.Auswahl.options.selectedIndex].value)"
style="width:250px; background-color:#777777; font-size:9pt; color:#FF9933; font-family:Arial,sans-serif;"
width="250">
<option value="nothing">[ bitte auswählen! ]</option>
<option value="nothing">------------------------</option>
<option value="raunzer.php?m=4&?cat=0">Alle Bilder</option>
<option value="raunzer.php?m=4&?cat=10">>Die Abifeten</option>
[...]
</select></form>
der fehler ist sicherlich die Zeile parent.frames[0].location. ...