Click to See Complete Forum and Search --> : Problem with changing images on MouseOver under NSx


oliverko
03-10-2003, 12:18 PM
Hi,

I have this problem with changing 2 .gif images on MouseOver .

It works with IE5x versions but does not with NS versions.
I know there is a browser verification missing somewhere but
am not able to deal with it myself. :-(

Please, I enclosed a .txt file with external .js code that
should trigger off this. Could you help me?

PS: The relevant html page is
- http://www.netdive.com/index_main_new0.htm

khalidali63
03-10-2003, 03:52 PM
you have a javascript source file

mayc_script.js

in this file replace the filImage function witht he one below


function flipimageIE(imageSource){
replace = "<IMG src='" + imageSource + "'>";
var obj = document.getElementById("displayTable");
obj.innerHTML = '';
obj.innerHTML = replace;
}


The above is not very good code but I followed the pattern you already had,just to make it work

:D

Cheers

Khalid