I have a div I want to fade out, update its content, and then fade back in. So far I have tried:
div
$(\'#myDivID\').fadeOut(\'slow\', function() {
Try this.
http://jsfiddle.net/X3cnT/
$('#myDivID').fadeOut('slow', function() { $('#myDivID').html("all this text"); $('#myDivID').fadeIn('slow'); });