Javascript + IMG tags = memory leak. Is there a better way to do this? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:58:49Z http://stackoverflow.com/feeds/question/336348 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/336348/javascript-img-tags-memory-leak-is-there-a-better-way-to-do-this 6 Javascript + IMG tags = memory leak. Is there a better way to do this? Dustin 2008-12-03T06:23:56Z 2009-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 &gt; 10) { $('#shots li:last-child').remove(); } $('&lt;li&gt;&lt;img src="' + p.ProductImageSmall + '"&gt;&lt;/li&gt;').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#336374 0 Answer by redsquare for Javascript + IMG tags = memory leak. Is there a better way to do this? redsquare 2008-12-03T06:53:28Z 2008-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&gt;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#336408 0 Answer by Scott Evernden for Javascript + IMG tags = memory leak. Is there a better way to do this? Scott Evernden 2008-12-03T07:19:56Z 2008-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#336513 0 Answer by Tomalak for Javascript + IMG tags = memory leak. Is there a better way to do this? Tomalak 2008-12-03T08:39:09Z 2008-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 &gt; 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#336514 0 Answer by redsquare for Javascript + IMG tags = memory leak. Is there a better way to do this? redsquare 2008-12-03T08:39:35Z 2008-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#336610 0 Answer by redsquare for Javascript + IMG tags = memory leak. Is there a better way to do this? redsquare 2008-12-03T09:27:35Z 2008-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#854410 0 Answer by gs for Javascript + IMG tags = memory leak. Is there a better way to do this? gs 2009-05-12T19:23:29Z 2009-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#854624 1 Answer by Rob Colburn for Javascript + IMG tags = memory leak. Is there a better way to do this? Rob Colburn 2009-05-12T20:09:31Z 2009-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>