$.fn.addAlert = function (kind, message) { var box = ''; $(this).find('.alerts').append($(box)); } $.fn.clearAlerts = function () { $(this).find('.alerts').html(''); }