Adding jquery in iframe causes memory leak when that iframe is reloaded.

Adding jquery in iframe causes memory leak when that iframe is reloaded.

I have an iframe which has the jquery 1.5.2.
If I reload the iframe it will cause a memory leak.
Here is the code:
parent.html
  1. <html>
  2. <body>
  3.   <iframe id='ifrm' src='http://localhost:8080/acrm/child.html'></iframe>
  4.   <input type='button' value='RELOAD IFRAME' onclick='document.getElementById("ifrm").contentWindow.location.reload(true);'/>
  5. </body>
  6. </html>
child.html
  1. <html>
  2. <head>
  3. <script type='text/javascript' src="jscript/jquery-1.5.2.min.js"></script>
  4. </head>

  5. <body>
  6.   <div>This is the iframe</div>
  7. </body>
  8. </html>
When the iframe is reloaded many times you will see the memory grow. I've tested this with IE 8 
Any solutions to this?
Thanks!