I see a problem here:

document.onload = findForms();

it assigns to document.onload value that findForms() RETURNS. As the
function itself doesn't return anything, document.onload is being
assigned null.

Rewriting it as following should work:

document.onload = findForms;

However, rewriting it the way other posts suggested is, in my view,
better.
--~--~---------~--~----~------------~-------~--~----~
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 prototype-scriptaculous@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-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to