compatible with mozilla

  • Thread starter Thread starter Aaron
  • Start date Start date
A

Aaron

how can i make this compatible with Mozilla/Firefox or netscape?

<span id="id1" onmouseover="id1.style.display = 'none'">dfdfd</span>

the word disappears with mouse over in IE.

Thanks
 
<span id="id1" onmouseover="getElementById('id1').style.display =
'none'">dfdfd</span>

The above should work with NS7.1, FF0.9 and MZ1.7, perhaps also some earlier
versions.
(I've only tried with above versions)
 
Back
Top