What is the all-platform equivalent of Cordova's `deviceReady` event?

The vanilla javascript way should work

document.addEventListener("deviceready", function(){
//do something when device is ready
}, false);
1 Like