Side navigation
#1697 closed bug (fixed)
Opened September 20, 2007 03:29PM UTC
Closed October 06, 2007 05:05PM UTC
Memory leak in IE6
| Reported by: | davojan | Owned by: | |
|---|---|---|---|
| Priority: | critical | Milestone: | 1.2.2 | 
| Component: | event | Version: | 1.2.1 | 
| Keywords: | leak | Cc: | |
| Blocked by: | Blocking: | 
Description
When binding simple function to element we have a memory leak in IE6 (when refresh page you see how memory leaks). Here is a realy simple code sample:
<html>
<head>
	<title>Memory leak</title>
	<script src="/js/jquery/jquery.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
	$(document).ready( onReady );
	
	function onReady() {
		$('#top').click( myClick );
	}
	
	function myClick( jEvt ) {
		$( jEvt.target ).html( Math.random() );
	}
</script>
<div id="top">ddd</div>
</body>
</html>
Attachments (0)
Change History (1)
Changed October 06, 2007 05:05PM UTC by comment:1
| resolution: | → fixed | 
|---|---|
| status: | new → closed | 
| version: | 1.2 → 1.2.1 | 
Fixed in Rev [3578]