Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
Hi everybody,
I want to write a JavaScript code to hide some elements of my Portlet on load like the event onload in HTML.
Thank you !
Maybe you can use the Prototype library that comes with the CAF.
Event.observe(window, ‘load’, function() { alert(‘Page Load’); });
Thank you !! It’s all what I want