Forum Moderators: open
You can do this using onmouseover and onmouseout to fire a function that displays the layer.
For example:
function showHideLayer(layerID,action) {
document.getElementById(layerID).style.display=action;
}
Then in your HTML:
<a href="someLink.html" title="Some Title Text" onmouseover="showHideLayer('myLayer','block')" onmouseout="showHideLayer('myLayer','none')">Link Text</a>
This will toggle the display property of the layer between block and none.
HTH