Hi,
Can someone point me in the direction to hook the DOM loaded event?
Basically, i want to display a loader while the dom is loading (I dont mean Ajax requests- the first time a user hits a page) ?
Thanks all in advance
|
|
|
|
|
|
|
All of the popular Javascript libraries have a "DOM loaded" event you can use for this. Essentially:
|
||
|
|
|
|
but if the div id="loading" is dynamically created? I have href that I create in table and I want to handle the event of the href |
||
|
|
|
|
Just to provide an alternative to jQuery, YUI Event provides an onDomReady() function for this purpose as well. Here's the example from their site:
|
||
|
|