Topic: Body OnLoad not working for API
I have a page loading 4 galleries. On the body tag I used JavaScript for Onload and told it to hide galleries 2, 3 and 4. However they show anyway:
<body onload="Gallery2.showGallery(false); Gallery3.showGallery(false); Gallery4.showGallery(false)">
The hiding of the galleries works fine using the buttons.
How can I hide all but one when the page loads?
Thanks for any help!