open
Fires when the ModalView is shown.
<div data-role="view">
Foo
</div>
<div data-role="modalview" id="foo" data-open="logTarget">
Foo
</div>
<script>
function logTarget(e) {
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(e.target); // <a href="#foo" ...
}
new kendo.mobile.Application();
</script>
Event Data
e.target jQuery
The invocation target of the ModalView.