Roll Over Menus not disappearing

liunx

Guest
Below is the link to my company's site i've developed:<br />
<br />
<!-- m --><a class="postlink" href="http://www.avinternational.net">http://www.avinternational.net</a><!-- m --><br />
<br />
Could someone help me get my rollover menus to disappear on mouse-out? They seem to stick to the screen even after your mouse has moved off them, and I can't figure it out<br />
<br />
<br />
thank you very much!<!--content-->your over complicating the scripts and it does not work in ns browsers. Use a script more like this<br />
function showmenu(elmnt)<br />
{<br />
document.getElementById(elmnt).style.visibility = "visible";<br />
}<br />
function hidemenu(elmnt)<br />
{<br />
document.getElementById(elmnt).style.visibility = "hidden";<br />
}<br />
<br />
stop using document.all<!--content-->
 
Back
Top