destroy
Prepares the PopOver for safe removal from DOM. Detaches all event handlers and removes jQuery.data attributes to avoid memory leaks. Calls destroy method of any child Kendo widgets.
Important: This method does not remove the PopOver element from DOM.
<div data-role="view">
Open PopOver
Destroy
<div id="foo" data-role="popover">
<div data-role="view">
View 1
</div>
</div>
</div>
<script>
var app = new kendo.mobile.Application();
function destroy() {
$("#foo").data("kendoMobilePopOver").destroy(); //detach events
}
</script>