Fade hidden div in and out with jquery?

My guess is that you execute the 'live' blocks $('. Container'). Live('mouseover', function() { showDivs(this); }); $('.

Container'). Live('mouseout', function() { hideDivs(this); }); more than one time. If you do so you add up many mouseover, mouseout events on your DOM objects because jQuery is not replacing the live binds but stacking them.So for example if you by accident run your live blocks 10 times, then with every mouseover, your live('mouseover') ... will be called 10 times.

That might look like flickering :-).

Thanks all, mouseenter and mouseleave seems to do the trick. Yup, mouseover and mouseout and live gets a bit tricky, the flicker is gone, thanks! – newbie_86 Mar 30 at 13:13.

JQuery API: mouseover/mouseout event types can cause many headaches due to event bubbling. For instance, when the mouse pointer moves over the Inner element in this example, a mouseover event will be sent to that, then trickle up to Outer. This can trigger our bound mouseover handler at inopportune times.

See the discussion for .mouseenter() for a useful alternative.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions