User Rob Colburn - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T16:14:00Zhttp://stackoverflow.com/feeds/user/105677http://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-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>