Hello, I heve a problem whith the hover method, i've tried lose onmouseover, onmouseenter and my problem is not solved. On FF is works fine but not in ie. I have not tried it on other client.
my problem is this : I create a div in annother div : $(#div1).html("<div id='div2'>toto</div>"); then : $("#div2").hover(function() { $("#div3").show() }, function() { $ ("#div3").hide(); }); This works fine when i hover or leave the div2. But if the mouse is already hover the div2 when it appears, this dosen't works on ie. I have to move a little the mouse to do it working. There is a solution ? Thanks