SyntaxFix
Write A Post
Hire A Developer
Questions
$("#test").hide(100, function() { $(this).html("......").show(100); });
Updated:
Another easy way:
$("#test").fadeOut(400, function() { $(this).html("......").fadeIn(400); });