If you made a web application that never refreshed the page, but was completely built from the first page plus Javascript requests, thereby creating and destroying elements as needed, can any of the browsers use the memory used by outdated dom elements?
Is this planned in any browsers?
I think full-blown extJS applications will be very sensitive to such a memory leak.
Is there a really effective reuse strategy to mitigate this problem?
I do not mean the garbage collection of the Javascript object here, only the deleted DOM elements, but I'm not sure if this is ultimately the same at the end.
source
share