The jQuery object, which wraps the element being hidden.
<span id="notification"></span>
<script>
function onHide(e) {
var elementBeingHidden = e.element;
}
$("#notification").kendoNotification({
hide: onHide
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>