Hello,
I've put together a little function for mouse over image swapping.
this works great in IE, but not at all in firefox.
was hoping that someone here might have an idea how to fix this?
thanks in advance for your time!
-Ken
I've put together a little function for mouse over image swapping.
PHP Code:
function SwapImage(strNamge,strImage){
ImageFlip= new Image()
ImageFlip.src = strImage;
var strImageOn = document.getElementById(strNamge);
strImageOn.src = ImageFlip.src; return true;
}
was hoping that someone here might have an idea how to fix this?
thanks in advance for your time!
-Ken
Comment