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>