Hallo,
ich habe ein kleines Problem. Ich will, wenn ein Benutzer einen bestimmten Button drückt, ein Eingabefeld verschwinden und ein anders auftacuehn lassen. Klappt soweit auch ganz gut im Firefox; nur der IE zickt und liefert immer "Fehler auf der Seite". Hier der Code der Funktion
function control_type() {
var typ = document.formular.typ.value;
if (typ == "Workbench") {
alert(typ);
document.formular.mandant.type = "hidden";
document.formular.platzhalter.type = "text";
} else {
alert(typ);
document.formular.platzhalter.type = "hidden";
document.formular.mandant.type = "text";
}
}
"mandant" und "platzhalter" sind jeweils zwei input-Felder. "formular" ist das das umschließende Form Tag.
Weiß jemand Rat?
mfg
Schniepel