I thinking to develop a webpage with a design like "slide", its composed by a div "frame" (overflow hidden at 100% width and height) and inside divs "containers", (scaled to 100% width and height of the window in javascript and float:left to make horizontal line).
The "containers" have the "pages" or "sections", some HTML content loading by AJAX, and DOM events (click, drag, move, etc..) attached to this HTML elements.
The sistem "slide" the containers to show only the "container" of the selected page or section, make this a full load page.
My dude is: The "outside" elements of the window (the containers are with left position -XXXXX or left XXXXX, the non visible elements outside the window size) are render by browser?
My fear is, when the page have some much "sections" loaded, and have to much HTML in the containers, if the speed slow down or the outside element dont affect the performance of the browser.
Other idea its to save the section DOM (HTML + events) in a object, clear this from the container div when its outside the vision zone (window), and when slide to the section X, load the content fron the object to the container, but i dont know if this method its to slow (and dont know how load an clear entire DOM inside a div, from and to and object).
I know mi question its to "teorical" but i search for "ideas" for make this full-load slide page.
Thanks!