vote up 1 vote down star

I am creating a progressively built single-page (if Javascript is enabled) "blog" which uses AJAX to request HTML for new pages the user is navigating to.

When the user navigates to new pages they will be added one after another into the DOM in a small window with "overflow: hidden;":

<div id="foo" style="width:200px; height:100px;">
  <div id="bar" style="width:999999px">
  </div>
</div>

When an AJAX call returns success a div will be appended into #bar.

How will it affect the browser when there are a lot of hidden pages outside the #foo width?

Do I need to remove the divs from the DOM as the user navigates away from them? Then I will need to make a new AJAX request if the user chooses to navigate to them again. :(

Thanks

Willem

flag

40% accept rate

2 Answers

vote up 2 vote down check

No matter what people say GC will do for you, whether in JavaScript or C# or Java, watch out and forget the silly promise of automatic management. Clean it up explicitly and sleep well.

Very simple reason: closures leak and leak pretty bad the moment you move out of most simplistic scenarios (the case both for brower's JavaScript as well as C#/java).

link|flag
Please define GC. As a beginner developer I am also having trouble understanding what you mean by closure. Thanks – Willem Mar 18 at 0:30
GC, garbage collector, part of your browser, runtime and occasionally OS virtual memory manager.For understanding closures, it is important as you dive in functional style and lambdas and some delegates usage. en.wikipedia.org/wiki/… explicit and clean up, it pays. – rama-jka toti Mar 18 at 7:57
Take out the ".Be" part (The markup interpreter on stackoverflow has classic problems).. Just Google for specific closure usage in favoured language, whether JS, C# or Java. – rama-jka toti Mar 18 at 8:00
vote up 0 vote down

Modern browser layout engines are generally smart enough to not process elements that are hidden, so it won't take much CPU power. However, adding large numbers of nodes with highly complex object graphs can be expensive in some browsers, so I'd be careful with this. Also note that even if they're not laid out, they're still there as part of the DOM, and memory usage could conceivably become a concern if these nodes are large.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.