Hello Richard,

First, this is not a $A() issue.

When you called ''With Reporter' you wont get scritpaculous because
your code is
executing before scriptaculous is even rendered via the dom. (top
down)

The dom should be there onLoad though. If not try:

Event.observe(window, 'load', function(){
    setTimeout(function(){
       ReportJS('AfterLoad');
    }, 100);
});

Maybe dynamically added scripts need time to be seen in the dom,
I used 100 miliseconds, but if that works i am sure any amount would
like 10.


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype: Core" group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to