hi all,
i has a litle problem when using $(IdElement).shie("slow"); this my
code
my JQuery
$(document).ready(function() {
$("#text_span").mouseover(function(){ $("isPopUp").show("slow");});
$("#isPopUp").mouseover(function(){$("#isPopUp").css("display",
"block");});
$("#isPopUp").mouseout(function(){$("#isPopUp").hide("slow");});
}
My HTML
<div id="isPopUp" style="display:none">
<div><img src="some source"></div>
<div>
<a href="a">one</a><br>
<a href="a">two</a><br>
<a href="a">tree</a><br>
<a href="a">four</a><br>
</div>
</div>
<span id="text_span">show the div</div>
when my cursor over in text_span, the div showed and that is true.
But, the problem when my cursor over the image the div just gone, hide
with slow.
Where is my incorrect sintax?
When i change the hide("slow") to hide() only, all be fine :(
thang's for help