I have this Code:
var items = jQuery('#main .imgteaser .txtwrap');
items.css("opacity","0.8");
items.mouseenter(function(){
alert('enter');
jQuery(this).animate({
bottom: "0",
opacity: 1,
border: "1px solid #a6a6a6"
}, 500, function(){alert('enter animation ready');});
jQuery(this).addClass('hover');
});
items.mouseleave(function(){
alert('leave');
jQuery(this).animate({
bottom: "-60",
opacity: 0.8,
border: "1px solid #fff"
}, 500, function(){alert('leave animation ready');});
jQuery(this).removeClass('hover');
});
In Firefox it works good, but in the IE7 the leave jQuery animation don't work and the callback function don't work too.
console.log.. Also, if you can put something online (or show the HTML as well) it would help a lot. – Gaby aka G. Petrioli Jan 10 '11 at 10:17}after the alert in the leave function (callback). – Gaby aka G. Petrioli Jan 10 '11 at 10:28