anchor String|jQuery
Specifies the element that will be used as an anchor. The widget will open next to that element.
Example - specify an anchor
<input id="datepicker" />
<div id="popup">CONTENT</div>
<script>
$("#popup").kendoPopup({
anchor: $("#datepicker")
}).data("kendoPopup").open();
</script>