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

c# - Move local mssql database to webhosted MYSQL -

java - How to pass parameters between Request-Scoped Controllers? -

string - what is the difference between "some" == "some\0" and strcmp("some","some\0") in c++? -