The Ready Event: Don't wait for the images
midori supports a special event type called 'ready' which is identical to the 'load' event except for one thing: Your listener function is called immediately after the document is parsed by the web browser. Unlike 'load', there is no need to wait for all the images to load.
For example:
<img src="very_big_image.jpg" alt="Takes a ton to load" />
<script type="text/javascript">
midori.addEventListener(window, 'ready', function (e) {
alert('Here!') } );
</script>
