Search code examples
cordovaonsen-ui

onsen-ui with phonegap: push page on app ready


I check on device.ready the local storage whether the user is already logged in or not. Then I need to navigate either to "home.html" or "login.html" but I always get the reference error "Uncaught ReferenceError: ons is not defined".

ons.navigator.pushPage('home.html');

I tried also with window.onload or $(document).ready but I always get the same error. Button clicks works fine.

Thanks in advice, Kornel


Solution

  • ons.ready liste for cordova deviceready event and onsen loaded

    ons.ready(function(){
    
       myNavigator.pushPage('home.html');
    
    });