hallo leute,
ich habe folgendes problem:
ich habe diesen HTML-Code:
<table>
<tr id=link_1>
<td>link_1</td>
</tr>
<tr id=subLink_1 style='display:none'>
<td>
<table>
<tr id=link_1a>
<td>link_1a</td>
</tr>
<tr id=link_1b>
<td>link_1b</td>
</tr>
</table>
</td>
</tr>
<tr id=link_2>
<td>link_2</td>
</tr>
<tr id=subLink_2 style='display:none'>
<td>
<table>
<tr id=link_2a>
<td>link_2a</td>
</tr>
<tr id=link_2b>
<td>link_2b</td>
</tr>
</table>
</td>
</tr>
</table>
nun wenn ich auf link_1 click rennt es in eine JS-Function die mit getElementById('subLink_1') bei diesem das display auf 'inline setzt.
Bis hierhin läuft alles wunderbar...
click ich nun auf link_2, wird zwar hier auch bei 'subLink_2' das display auf inline gesetzt und das von subLink_1 wieder auf 'none'und der Inhalt von subLink_1 ist nicht mehr zusehen, allerdings bleibt irgendwie so eine art platzhalter. Soll heißen an dem platz wo vorher der Inhalt von subLink_1 stand ist zwar kein inhalt mehr zu sehen, dafür aber leerer space bevor dann link_2 erscheint... im IE und in Opera geht es... im Firefox nicht
mmmh ist das halbwegs verständlich?
danke schonmal
.xnz