[jQuery] JQuery .animate and IE6
Hi, I'm currently attempting to use the JQuery .animate call and can
get it to work as desired across firefox, safari, IE7, but in IE6 the
page will take up all my CPU and also repeatedly flash my mouse egg
timer icon - is this a known issue?
Here's an example of my code:
function Callback(data) {
$('#LeadFeatureContainer').animate({opacity: 1.0}, 8000, function() {
if(!paused) {
$('#LeadNext').trigger('click');
triggered = true;
}
});
}
Where CallBack gets called on $('#LeadNext').trigger('click'); i
understand that it is calling recursively but its a bit extreme that
it saps all my power!
Thanks,
Steve