$(document).ready(function( ){ $(".highlight_exception").each(function(){ $(this).find(".highlight_exception_wrapper").prepend("Schließen"); }).after(function(){ $(".highlight_exception .close").bind("click", function(){ $(".highlight_exception").fadeOut(); }); }); $(".highlight_exception").each(function(){ var container = this; $(container).bind("click", function(){ $(container).fadeOut(); }); $(container).find(".highlight_exception_wrapper").each(function(){ var wrapper = this; if( $(wrapper).find("p").length == 0 ){ $(container).hide(); } }); }); });