Hi there,
I'm trying to exchange background images in a table cell onMouseOver. It works fine in IE, but the onMouseOut doesn't work in Netscape (7.0), although onMouseOver does.
Here's my code:
<table style="background: url('bkg1.gif'); "><tr><td>
<a href="Link1" onMouseOver="this.style.background='url(bkg2.gif)'" onMouseOut="this.style.background='url(bkg1.gif)'">Link1</a></td></tr></table>
What am I missing?
I'm trying to exchange background images in a table cell onMouseOver. It works fine in IE, but the onMouseOut doesn't work in Netscape (7.0), although onMouseOver does.
Here's my code:
<table style="background: url('bkg1.gif'); "><tr><td>
<a href="Link1" onMouseOver="this.style.background='url(bkg2.gif)'" onMouseOut="this.style.background='url(bkg1.gif)'">Link1</a></td></tr></table>
What am I missing?