jquery fadeOut not working when callback used -
i have div fades in callback works:
div.fadein(600, function(){ sidenote(nlevel); });
at other point though div may need fade out again.
div.fadeout(500);
this happens function called onclick event.
normally can work. seems when use callback can't. (it happened elsewhere, when removed callback on 1 worked fine. cannot here)
thanks
are u looking ??
have @ jsfiddle demo
$(".story1").fadein("50", function () { $(".story2").fadeout("100"); });
Comments
Post a Comment