|
-
Jun 27th, 2001, 10:18 AM
#1
Thread Starter
Frenzied Member
onMouseOver with layer or div
in explorer onMouseOver works,
but in netscape it does not seems to work!!
how can I make this work in netscape!!!
Code:
<div id="hotSpot" onMouseOver="hideSubMenu();" style="position:absolute;width:2000px;height:262px;left:0px;top:0px;visibility:visible;z-index:1">
<table width="100%" height="100%" border="0">
<tr><td> </td></tr>
</table>
</DIV>
I use this because i want to hide the submenu when the
mouse is out of the submenu!!
any ideas!!
-
Jun 27th, 2001, 01:28 PM
#2
Fanatic Member
sebs,
Have you tried wrapping it in a anchor tag?
<a onClick = "return false;" onMouseOver="hideSubMenu();" >
<div id="hotSpot" style="position:absolute;width:2000px;height:262px;left:0px;top:0px;visibility:visible;z-index:1">
<table width="100%" height="100%" border="0">
<tr><td> </td></tr>
</table>
</DIV>
</a>
Chris
-
Jun 27th, 2001, 01:47 PM
#3
Thread Starter
Frenzied Member
i had to make a condition,
if explorer i use the div tag,
if netscaoe i use the layer tag,
the mouseOver work with layer
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|