7 lines
156 B
JavaScript
Raw Normal View History

2017-04-24 17:13:08 -06:00
$(document).ready(function () {
/* Fade out alerts */
$(".alert .close").click(function (e) {
$(this).parent().fadeOut('slow');
});
});