I have this function:
$("#menuwrap").fadeOut(300, function () {
$("#menuwrap").load(url, function () {
$("#menuwrap").fadeIn(300);
});
});
But the callback action for .load() wont fire. #menuwrap is stuck with an inline style="display:none".
Even an alert() before the fadeIn() won't show.
Never had this trouble before. Any ideas?
load()work without thefadeOut(), i.e. stand-alone? – NobRuked Aug 26 '11 at 21:57id="menuwrap"by chance? – Nick Craver♦ Aug 26 '11 at 22:08#menuwrapdo change, even with the snippet I posted. – Armin Cifuentes Aug 26 '11 at 22:26id="menuwrapin the resulting markup. No duplications, not even within the file. – Armin Cifuentes Aug 26 '11 at 22:27