4 lines
184 B
JavaScript
4 lines
184 B
JavaScript
$(function() {
|
|
// Display notification message close boxes and wire up click handlers.
|
|
$('.message .close').show().click(function() { $(this).closest('.message').fadeOut(); });
|
|
}); |