Hello everyone,
i try to get a solution for following problem.
synchron fadeout and fadeTo with different elements.
the page behavior should be like this - page load - content hidden - menu shown - content fadeIn and menu fadeTo opacity 0.0
my snippset of code
$(document).ready(function(){ $(".content_main").hide(); $(".content_main").fadeIn(8000); $(".header > ul").ajaxSend(function(){this.fadeTo("8000", 0.0)}); });
but this isn't synchron, any hint ??