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

Popular posts from this blog

iphone - Dismissing a UIAlertView -

c# - Can ProtoBuf-Net deserialize to a flat class? -

javascript - Change element in each JQuery tab to dynamically generated colors -