Menu Sprungziel
Jump zur Auswahl
Dieses JavaScript macht aus einer Auswahlliste eine Navigation. Es gibt eine Variante, welche die Seite in einem neuen Fenster öffnet.
onchange="geheZu('parent',this,0)"
eval()
<script type="text/javascript">
function geheZu(targ,selObj,restore){
eval(targ+".location.href='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0; }
</script>