init

Fires after the mobile application is instantiated.

    <div data-role="view" id="foo">
        I am a mobile button
    </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