Hallo Eddi,
document.formularname.Auswahl.elements[index].text = "";
Läßt sich für den Mozilla schon mal falsifizieren. Ist auch relativ logisch, da <select> kein Unterobjekt elements kennt. Laut http://de.selfhtml.org/javascript/objekte/htmlelemente.htm#option ist das Schreiben von .text ebenfalls nicht erlaubt.
Du hast natürlich recht, ich meinte auch 'options':
document.formularname.Auswahl.options[index].text = "";
Grüße
Andreas
--
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."
(Rich Cook)
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning."
(Rich Cook)