Creating a fadeOut and fadeIn in sequence using jquery -
i ".elliot" tag fade in after ".skinner" fades out. current scripts not working properly. there better way this?
jquery(window).load(function () { settimeout(function () { $(".skinner").fadeout("fast", function () {}) }, 500) }) jquery(window).load(function () { settimeout(function () { $(".elliot").fadein("slow", function () {}) }, 1000) })
use complete handler on fadeout.
jquery(window).load(function () { window.settimeout(function () { $(".skinner").fadeout("fast", function () { $(".elliot").fadein("slow") } , 500) })
Comments
Post a Comment