javascript - Callbacks not working properly -
javascript - Callbacks not working properly -
i'm @ loss. in code, #options should wind fading in, doesn't. css attributes set, though.
$("#content > p").animate({ opacity: '0' }, function() { $(this).css("display", "none"); $("#options").css("opacity", "0").show(0, function() { $("#options").fadein(); }); });
the opacity still beingness set 0.
you can alter fadein() to...
$("#options").animate({ opacity: 1}, 500); jsfiddle.
javascript callback jquery-callback
Comments
Post a Comment