I want to open a div containing few links in it on mouseover of an image and to hide that div on mouse out. but the problem i am facing is that the div also hides when i try to go on any link of that div coz the mouseout event of image fires which hide the div.
Asked
Active
Viewed 823 times
-3
-
may this question helps http://stackoverflow.com/questions/350639/how-to-disable-mouseout-events-triggered-by-child-elements – rab Mar 04 '13 at 06:11
2 Answers
1
use
transition-delay:some value in sec;
and on
div:hover {
display:block;
}
and for full help show us the code

Sahil Popli
- 1,967
- 14
- 21