Splash screen Android loadUrl

How can i get the splash screen to disappear immediately after an url has been loaded at app start up?

I want to load a remote site like in config.xml

<content src="http://example.com/index.php"/>

or in index.html using something like

 var ref = window.open('http://example.com/index.php', '_blank', 'location=no');

The splash disappears to quick or you are limited to set a delay and the splash would show [delay] ms.
Any suggestions?

Ended up making a “native” splash screen, overriding the onMessage method to check when the site is loaded in the CordovaActivity…