Return to Snippet

Revision: 67835
at October 31, 2014 02:35 by madebycrunch


Initial Code
$(".alert_box").delegate("a.close", "click", function(event) {
	event.preventDefault();
	$(this).closest(".alert_box").fadeOut(function(event){
	$(this).remove();
	});
});

Initial URL


Initial Description
jQuery - Page Component - Alert Boxes

Initial Title
jQuery - Page Component - Alert Boxes

Initial Tags


Initial Language
jQuery