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

AppendTo

configuration

Defines the element to which the notifications will be appended or prepended (depending on the stacking direction).

appendTo

String|Element|jQuery

Default: null

<span id="notification"></span>
<div id="container"></div>
<script>
$("#notification").kendoNotification({
    appendTo: "#container"
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>
<span id="notification"></span>
<div id="container"></div>
<script>
var container = document.getElementById("container");
$("#notification").kendoNotification({
    appendTo: container
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>
<div id="notification"></div>
<script>
var element = $("#notification");
element.kendoNotification({
    appendTo: element
});
$("#notification").getKendoNotification().show("Kendo Notification");
</script>
Not finding the help you need?
Contact Support