HTML
<html><head><title>Test</title>
</head><body>
<form name="Testform">
<select name="Auswahl" size=1 id="grund_modell">
<option value="a">Blindauswahl 1
<option value="b">Blindauswahl 2
<option value="c">Blindauswahl 3
<option value="d">Blindauswahl 4
<option value="e">Blindauswahl 5
</select>
</form>
<script language="JavaScript">
var tmp = document.getElementById('grund_modell');
var m = 'c';
for (i in tmp.options )
{ alert(i);
if (tmp.options[i].value==m)
tmp.selectedIndex = i;
}
</script>
Alles anzeigen
wieso geht das im ie6 nicht... bzw wie müsste es für den ie lauten? (alert ist nur debug)