Hallo, ich bin am Verzweifeln:
Ich hab eine Fkt. nextstep die Daten aus einem Formularfeld an ein Script übergeben soll. Im IE klappt es, in NS liefert document.newshow.categories.value null an das Script.
Woran liegt das?
<-snipp->
function nextstep(target, action, place)
{
window.location.href='s001.pl?
target='+target+'&action='+action+'&userid=t01234&selected='+
place+'&'+'4841';
}
<-snipp->
<form name="newshow">
<select name = 'categories' onChange="nextstep('service', 'showservice', '0_'+document.newshow.categories.value)">
<option value='0_0_0'>...</option>
<option value='1_Adressänderung_0'>Adressänderung</option>
</select>
</form>
<-snipp->
Danke für Eure Hilfe!
Gruß Jan