Forum Moderators: open
I have designed 3 sites in Microsoft Frontpage 2000 and 2002. I have incorporated dynamic animation where on mouseover, the image will swap out. This works great in every browser except one: Netscape 7. In Netscape 7, a blank image comes up upon mouseover. If I go to the Javascript console, it either tells me:
animate.js was blocked by the security manager.
Remote content may not link to local content.
Or it tells me:
doc_els has no properties.
Please refer to www.literacyvolunteers-maricopa.org and view in Netscape 7 to see what I mean.
This is so odd--especially when it works fine in older browsers of Netscape. Am I overlooking something? I am stumped! Thanks!
Why not use pure CSS rollovers?
a { background: url(plain_image.png) }
a:hover { background: url(hover_image.png) }
You don't need any javascript.
See [webmasterworld.com...] for more details.
Also, you can't depend on any bugs in NS4 showing up in gecko browsers. Different codebase and everything.
You might want to read through our thread Bare Bones Rollover [webmasterworld.com]. Despite the kind of code that WYSIWYG editors create, a simple image swap on mouseover is not a brain bender.