Hello all,

I have a fadeTo in an image (icon) located in front of some text. The
fade is triggered when i hover over the image. The problem is that,
during the fade, the text next to the icon jumps under the icon, to
jump back to its original position when the fade is over.

Here is the fade code:
$(".wijzigen,.verwijderen").hover(function(){
        $(this).fadeTo("slow", 1.0); // This should set the opacity to 100%
on hover
},function(){
        $(this).fadeTo("slow", 0.1); // This should set the opacity back to
60% on mouseout
});

And here the image + text:
<img class="verwijderen" id="verwijderen_'.$i.'"
src="remove.png"><input type="checkbox">'.$qry['titel'].'</div>'


How can i avoid this?

Many thanks!

Matt

Reply via email to