Web Development

Mootools domready vs window.onload

We are using window.onload or body onload=”” to start performing some events as the page is loaded.

Like
[cc lang=”javascript”]window.onload=myFunction;[/cc]

There are some down side to this method. First of all we have to wait for images. Next, what if you had a few scripts and had some code tied to window.onload? They would overwrite each other.

Mootools have created a solution for this. Mootools comes with a custom event that fire as soon as the DOM is ready. It is called DomReady.

[cc lang=”javascript”]
Window.addEvent(‘domready’, function(){
myFunction();
});
[/cc]

Above code will fire the myFunction as soon as all of the HTML DOM is loaded but before images, other windows and other images are loaded at all.

Benefits of DomReady Event:

  • Allow you to work with page as sooner than onload.
  • Allow you to use the same event with many scripts.
  • No waiting for images.

DomReady Syntax

[cc lang=”javascript”]
/*
MooTools DomReady.
Two Styles.
1. Call the function directly.
2. The function is inside of anonomos function.
*/
window.addEvent(‘domready’, myFunction);
//Or.
window.addEvent(‘domready’, function(){
myFunction();
});

function myFunction()
{
alert(“The DOM is ready.”);
}
[/cc]

Shares:

Leave a Reply

Your email address will not be published. Required fields are marked *