THIS CODE UNDER HERE WORKS, you can read the answers under here - i edit this for future reference.
HTML:
You should use html () instead of replace(). Also, assuming you want to replace your bank div with the following html:
Try this
$('#btn').click(function(e){ $('#fancy').fadeOut('slow', function(){ $('#bank').html('').fadeIn('slow'); }); });