$(document).ready(function() { $('a.overlay').click(function() { $('body').prepend( "
"+ "
"+ "

"+ " Einen Augenblick Geduld bitte..."+ "
"+ "
" ); $.get($(this).attr('href'), function(data){ $('#overlay .content').fadeOut('fast' , function() { $('#overlay .content').html(data).removeClass('loading').addClass('simplemsg').fadeIn('slow'); }); }); return false; }); $('#overlay:not(: ".content") , #overlay_close').live('click' , function() { $('#overlay').fadeOut('fast' , function() { $('#overlay').remove(); }); }); });