I have a website that uses media queries to look good on mobiles, I wrapped this up in phonegap so I can have it as an application too. I have set super.loadUrl to my site and this works, I also have a working splash screen that I want to keep up until the site has loaded. I came across this blog post and followed the instructions. It works if I am super.loadUrl to index.html (the app homepage) but not if I loadUrl of my actual site.
Splash screen code (main java file)
super.setIntegerProperty("splashscreen", R.drawable.splash);
super.loadUrl("My External Site Url", 20000);
Index.html code (this works if i loadUrl to it, but I want to loadUrl to my site)
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
navigator.splashscreen.hide();
}
However, when I use the above code (and include cordova.js) in my external html file, it doesn't recognise onDeviceReady, so the splash screen doesn't hide itself, and I'm stuck waiting 20 seconds.
Am I missing something? Am I even allowed to use onDeviceReady from an external html file (e.g. one that is not build into the app) or should this work and I am just referencing cordova wrong?

alert('navigator: ' + navigator + '\nsplashscreen: ' + navigator.splashscreen);(through a browser on my external html file, after including cordova) I getnavigator: [object Navigator], splashscreen: undefinedbut I don't get an alert on my phone or emulator, not yet anyway – Andy Oct 4 '12 at 8:35