Forum Moderators: open
<div id="Layername".... onMouseOut="PopUpLayer(this,'hidden');">
<table width="100%" ...>
<tr>
<td><a href...>Line 1</a></td>
<tr>
....
</table>
</div>
The code code for hiding the layer :
function PopUpLayer(obj,action){
obj.style.visibility=action;
}
I have tried putting in an 'onMouseOver="PopUpLayer(this,'visible');' to solve the problem but this just slows the performance of the menu.
Can someone explain why the layer disappears as soon as my cursor is place in the layer? How can I get around this? And is there a better way to do this?
Thanks in advance!