Hi,
ich hab das Problem das ich zur Laufzeit ein Hintergrundbild einer Zelle ändern muß, ich schaffe das durch javascript in IE und Netscape 6+ aber nicht in NS 4.
<td id="aCell" background="whatever.gif">
if (document.all)
document.all.aCell.background = 'whatelse.gif';
else
document.getElementById('aCell').background = 'whatelse.gif'
Da NS4 kein ID tag benutzt geht das schlecht, hat jemand eine Idee wie das noch gehn könnte ?
Danke