hide
Fires when a notification's hiding animation starts.
Event Data
e.element jQuery
The jQuery object, which wraps the element being hidden.
Example - subscribe to the "hide" event during initialization
<span id="notification"></span>
<script>
function onHide(e) {
var elementBeingHidden = e.element;
}
$("#notification").kendoNotification({
hide: onHide
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>