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) {
2017-05-07 00:30:25 -06:00
$(this).parent().fadeOut("slow");
2017-04-24 17:13:08 -06:00
});
});