jQuery mouseover/mouseout flickers
问题 I have the following HTML <div class="individual"> <div class="change">change</div> <div class="picture"><img src....></div> </div> The .change has position: absolute; and is invisible. On mouseover .picture , I want .change to appear, and on mouseout, to disappear. If the individual clicks .change then something should happen. Right now, when mouse goes over change, then it is treated as mouseout of picture, and so change starts to flicker! I then made this jQuery: $('.change').mouseout