I'm having trouble with the following code:
$(".active").animate({
opacity:0
},{queue: false, duration:1000}, function(){
console.log("queue??");
$(".active").css('display', 'none');
$(".active").removeClass("active");
initiatePage();
});
After adding queue: false, the function() ain't running at all... but if I don't, they just queue up, and I don't want that to happen either.. Is there a way to make this animation and everything going with it queue: false??
Let me know if I can provide anything to make it easier for you to help..
Thanks!