Frank
05-21-2003, 03:27 PM
The problem that I having is that I think that the onMouseOver keeps calling its function. Heres my code.
<script>
function text(){
var div = document.getElementById("Home");
div.style.visibility= "visible";
}
function notext(){
var div = document.getElementById("Home");
div.style.visibility= "hidden";
}
//-->
</script>
<body>
<a href="homepage.htm" target="bottom" onMouseOut=" notext()" onMouseOver="text()"> <img border="0" src="images/home_button.gif" width="60" height="20"></a>
<div id="Home" style="position: absolute; left: 563px; top: 75px; height: 175px; width: 121px; visibility: hidden; filter:alpha(opacity=75); -moz-opacity: 75%; background-color: transparent">
<table cellSpacing="0" cellPadding="3" width="121" border="0">
<tr>
<td><span class="menutext">Takes you to my homepage.</span></td></tr></table></div>
</body>
I would like it to work in both IE and NN, right now it only works in IE. In NN7 the div flickers as you move the mouse over the image which it shouldn't.
Thanks for any help
<script>
function text(){
var div = document.getElementById("Home");
div.style.visibility= "visible";
}
function notext(){
var div = document.getElementById("Home");
div.style.visibility= "hidden";
}
//-->
</script>
<body>
<a href="homepage.htm" target="bottom" onMouseOut=" notext()" onMouseOver="text()"> <img border="0" src="images/home_button.gif" width="60" height="20"></a>
<div id="Home" style="position: absolute; left: 563px; top: 75px; height: 175px; width: 121px; visibility: hidden; filter:alpha(opacity=75); -moz-opacity: 75%; background-color: transparent">
<table cellSpacing="0" cellPadding="3" width="121" border="0">
<tr>
<td><span class="menutext">Takes you to my homepage.</span></td></tr></table></div>
</body>
I would like it to work in both IE and NN, right now it only works in IE. In NN7 the div flickers as you move the mouse over the image which it shouldn't.
Thanks for any help