I am trying to animate the html part of a tag ( This Text! ) using jQuery\'s Animate function, like so:
This Text!
$("#test").hide(100, function() { $(this).html("......").show(100); });
Updated:
Another easy way:
$("#test").fadeOut(400, function() { $(this).html("......").fadeIn(400); });