how can i give delay on "onMouseout"?
sorry for bad english first.
<div id="1234">
<font id="top_shop">
<a href="www.test.com">
<img
src="/images/Test.gif"
onMouseover="this.src='/images/Test_on.gif';"
onMouseout="this.src='/images/Test.gif';" />
</a>
</font>
</div>
if i wrote codes like that, can i give delay onMouseover? (like if i over my mouse,
i ask this because when i use drop-down menu by use script which right bottom, images are disappear immediately when mouseover.
$("#1234").each(function(index) {
$(this).mouseover(function() {
$("#top_shop").css("display", "inline");
});
$(this).mouseout(function() {
$("#top_shop").css("display", "none");
});
});
its hard explain this problem on english. i will add video bottom. the drop-down menus are disappear for a 0.0001 seconds when mouse over
i think if i give delay on onMouseover, this would be solved. or load images before mouse over work
btw why is this happened?
