blob: c1763ed2590946b02b34e0ddd98ecdafb992e546 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
$.fn.addAlert = function (kind, message) {
var box = '<div class="alert alert-' + kind + ' alert-dismissible" role="alert">' +
'<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">×</span></button>' +
message + '</div>';
$(this).find('.alerts').append($(box));
}
$.fn.clearAlerts = function () {
$(this).find('.alerts').html('');
}
|