init

Fires after the mobile application is instantiated.

Example

<div data-role="view" id="foo">
    <a id="button" data-role="button" data-click="logCurrentView">I am a mobile button</a>
</div>

<script>
    var app = new kendo.mobile.Application(document.body, {
        init: function() {
/* The result can be observed in the DevTools(F12) console of the browser. */
            console.log("Kendo UI Mobile application is ready");
        }
    });
</script>
In this article