Javascript + IMG tags = memory leak. Is there a better way to do this? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T22:58:49Zhttp://stackoverflow.com/feeds/question/336348http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/336348/javascript-img-tags-memory-leak-is-there-a-better-way-to-do-this6Javascript + IMG tags = memory leak. Is there a better way to do this?Dustin2008-12-03T06:23:56Z2009-05-12T20:09:31Z
<p>I've got a web page that's using jquery to receive some product information as people are looking at things and then displays the last product images that were seen. This is in a jquery AJAX callback that looks pretty much like this:</p>
<pre><code>if(number_of_things_seen > 10) {
$('#shots li:last-child').remove();
}
$('<li><img src="' + p.ProductImageSmall + '"></li>').prependTo('#shots');
</code></pre>
<p>However, it seems to leak quite a bit of memory. Visually, it does the right thing, but the footprint grows indefinitely.</p>
<p>Safari's DOM inspector shows the DOM is how I would expect it to be, but it seems to maintain references to every image that it has displayed (as seen in <a href="http://skitch.com/dlsspy/7m5k/img-leaks" rel="nofollow">this screenshot</a> in case anyone is interested).</p>
<p>I've added</p>
<pre><code>$('#shots li:last-child img').remove();
</code></pre>
<p>to the removal statement to no noticable effect.</p>
<p>Is there some magic necessary to let the browser release some of this stuff?</p>
http://stackoverflow.com/questions/336348/javascript-img-tags-memory-leak-is-there-a-better-way-to-do-this/336374#3363740Answer by redsquare for Javascript + IMG tags = memory leak. Is there a better way to do this?redsquare2008-12-03T06:53:28Z2008-12-03T07:04:54Z<p>Can you try changing the src of the last-child and see if that makes a difference?
You can then move that element to be the first child</p>
<pre><code>//not tested
var $list=$('#shots>li');
$list.filter(':last-child').children('img')
.attr('src', p.ProductImageSmall)
.parent()
.insertBefore( $list.eq(0) );
</code></pre>
http://stackoverflow.com/questions/336348/javascript-img-tags-memory-leak-is-there-a-better-way-to-do-this/336408#3364080Answer by Scott Evernden for Javascript + IMG tags = memory leak. Is there a better way to do this?Scott Evernden2008-12-03T07:19:56Z2008-12-03T07:19:56Z<p>how long have you observed this 'growing indefinitely' ? some implementations of garbage collectors don't necessarily give memory back to the OS so quickly if at all. can you distill what you are trying to do into a real simple test (eg, setting src of image over and over) w/o ajax or callbacks ? have you / can you try this w/ the other browsers ? </p>
http://stackoverflow.com/questions/336348/javascript-img-tags-memory-leak-is-there-a-better-way-to-do-this/336513#3365130Answer by Tomalak for Javascript + IMG tags = memory leak. Is there a better way to do this?Tomalak2008-12-03T08:39:09Z2008-12-03T08:39:09Z<p>From the <a href="https://developer.mozilla.org/en/DOM/element.removeChild" rel="nofollow">Mozilla Developer Center on <code>removeChild()</code></a>:</p>
<blockquote>
<p>The removed child node still exists in memory, but is no longer part of the DOM. You may reuse the removed node later in your code, via the oldChild object reference. </p>
</blockquote>
<p>This is the key - reuse the removed child, instead of repeatedly making a new one.</p>
<pre><code>// I'm sure there is a nicer way to do it in jQuery
if(number_of_things_seen > 10) {
var shots = document.getElementById("shots");
var li = shots.getElementsByTagName("LI");
var move = shots.removeChild(li[li.length-1]);
move.getElementsByTagName("IMG")[0].src = p.ProductImageSmall;
shots.insertBefore(move, li[0]);
}
</code></pre>
http://stackoverflow.com/questions/336348/javascript-img-tags-memory-leak-is-there-a-better-way-to-do-this/336514#3365140Answer by redsquare for Javascript + IMG tags = memory leak. Is there a better way to do this?redsquare2008-12-03T08:39:35Z2008-12-03T08:39:35Z<p>ok I have built a test harness for this, it randomly grabs a new image and uses my replace src code</p>
<p>see <a href="http://pastebin.me/4936458820c43" rel="nofollow">http://pastebin.me/4936458820c43</a></p>
http://stackoverflow.com/questions/336348/javascript-img-tags-memory-leak-is-there-a-better-way-to-do-this/336610#3366100Answer by redsquare for Javascript + IMG tags = memory leak. Is there a better way to do this?redsquare2008-12-03T09:27:35Z2008-12-03T09:27:35Z<p>Dustin,
It seems the insertBefore statement in my code was causing some issues. If you see this futher test case the memory usage stays pretty static even though I am emptying the last-child and inserting a new new dom fragment. Performs better than the last attempt.</p>
<p><a href="http://pastebin.me/4936519fea2cf" rel="nofollow">http://pastebin.me/4936519fea2cf</a></p>
http://stackoverflow.com/questions/336348/javascript-img-tags-memory-leak-is-there-a-better-way-to-do-this/854410#8544100Answer by gs for Javascript + IMG tags = memory leak. Is there a better way to do this?gs2009-05-12T19:23:29Z2009-05-12T19:23:29Z<p>Is the footprint really a problem?</p>
<p>I suspect that Safari caches all images as long as you stay on the same site and there's nothing you can do about it. If you're lucky Safari releases not-needed objects after some limit is reached.</p>
<p>The reason for this behaviour is, that Safari thinks it's likely that those images are used a second time, and therefore it caches them.</p>
http://stackoverflow.com/questions/336348/javascript-img-tags-memory-leak-is-there-a-better-way-to-do-this/854624#8546241Answer by Rob Colburn for Javascript + IMG tags = memory leak. Is there a better way to do this?Rob Colburn2009-05-12T20:09:31Z2009-05-12T20:09:31Z<p>Browsers are notorious for memory leaks. It sounds like the problem occurs when the page is left running for a long time. How about refreshing the page before it runs out of memory?</p>
<pre><code>window.setTimeout("location.reload()",1000*60*60);//refresh in an hour
</code></pre>