deviceReady

deviceReady () is the starting point of an App. Typically, it's included in Custom.js.

The event is triggered once Cordova / Phonegap, MobileUI API and HTML page are fully loaded and ready to use.

Note that this event replaces Cordova deviceready, which should not be used.

Quick example

function deviceReady() {
navigator.splashscreen.hide();
}