Hi, > Doesn’t work – the alert is not displayed. But why?
Because by the time you've hooked the event, it's (probably) already been fired, so your handler never gets fired. (Are you the same person as the OP?) -- T.J. On Apr 1, 2:13 pm, Reimar <[email protected]> wrote: > Okay … to make the question really simple: > > document.observe('dom:loaded', function() { > > alert('DOM.ready') // DOM is ready, "body" should be > accessible > > Event.observe(body, 'load', function() { > alert('body.onload'); > }); > > }); > > Doesn’t work – the alert is not displayed. But why? -- You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en.
