Sempervivum
Erfahrenes Mitglied
Du hast es immer noch nicht vollständig durchgezogen:
theGroup.style.visibility = 'block';
} else {
theGroup.style.visibility = 'none';
So wäre es richtig:
theGroup.style.display= 'block';
} else {
theGroup.style.display = 'none';
theGroup.style.visibility = 'block';
} else {
theGroup.style.visibility = 'none';
So wäre es richtig:
theGroup.style.display= 'block';
} else {
theGroup.style.display = 'none';