This may not be the answer that you're looking for, but it really depends on what you're trying to do. If you have a small amount of content that's being hidden and shown based upon the user's actions, then loading it all at once may be the way to go.
However, if you're trying to show and hide a lot of information that could be interactive and have a lot of additional data associated with it (like large drop-down lists or dynamic data), you may want to load those parts of the application on demand, so that your initial page structure loads and then as the user interacts with the page, the secondary sections then load.
jQuery UI allows you to do this by allowing you to hook up ajax calls to dynamically load tabs when clicked, accordion sections when expanded, or dialogs when requested. I've used this a lot in my current projects and it really cuts down on the size of your initial DOM loaded and, assuming the user has a decent connection, allows you to bring down additional 'parts' of your page at a low cost.
(EDIT: I should have noted that almost any JavaScript framework allows for dynamic loading of content, along with just using JavaScript itself sans framework.)