Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Free Nodelet freed

by ikegami (Patriarch)
on Nov 09, 2006 at 23:40 UTC ( [id://583260]=note: print w/replies, xml ) Need Help??


in reply to Free Nodelet freed

Before messing with the DOM (document.[...]), it might be smart to wait for the HTML doc to be fully parsed and the DOM tree to be fully built. This can be achieved as follows:

<script type="text/javascript"> function my_dom_manipulator1() { ... } function my_dom_manipulator2() { ... } function my_dom_manipulator3() { ... } // Execute our snippets after the page is parsed. var old_onload = window.onload; window.onload = function() { if (old_onload != null) old_onload(); my_dom_manipulator1(); my_dom_manipulator2(); my_dom_manipulator3(); }; </script>

For an example of where this makes a difference, refer to Free Nodelet Hack: Nodelets on the left.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://583260]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (6)
As of 2024-04-18 12:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found