New to Kendo UI for jQueryStart a free 30-day trial

Show

events

Fires when a notification's showing animation starts.

Event Data

e.element jQuery

The jQuery object, which wraps the element being displayed.

<span id="notification"></span>
<script>

function onShow(e) {
    var elementBeingShown = e.element;
}

$("#notification").kendoNotification({
    show: onShow
});

$("#notification").getKendoNotification().show("Kendo Notification");
</script>
Not finding the help you need?
Contact Support