destroy
Prepares the Button 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 Button element from DOM.
<div data-role="view">
Foo
Remove button
</div>
<script>
var app = new kendo.mobile.Application();
function removeBtn() {
$("#btn").data("kendoMobileButton").destroy(); //detach events
$("#btn").remove();
}
</script>