Log in

View Full Version : mouseover/mouseout



Nick Druce
09-07-2005, 10:34 AM
I have used the mouseover command that produces two links to appear when the mouse is moved over the image.

When I move my mouse off the image the two links still remain. How do i get the the onMouseOut Commnd to make them, disappear?

Twey
09-07-2005, 10:40 AM
onmouseout="document.getElementById('link1').style.visibility = hidden; document.getElementById('link2').style.visibility = hidden;"

Nick Druce
09-07-2005, 10:41 AM
thanks for your very quick response. Just what i needed