Side navigation
#6802 closed bug (duplicate)
Opened July 19, 2010 12:40PM UTC
Closed October 11, 2010 03:26AM UTC
IE Memory leak with ajax
Reported by: | pascal | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.4.3 |
Component: | ajax | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
When I test the code below, i have a memory leak with IE8 (350 KB / 10 min). The file heure.php is a simple 'echo date("d/m/Y - H:i:s");'
<!DOCTYPE html PUBLIC "-W3CDTD XHTML 1.0 TransitionalEN" "http:www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript" src="js/jquery-1.4.2.js"></script>
<script type="text/javascript">
function Heure(){
$.post(
'heure.php',
{action: "test"},
function(data) {
document.getElementById("test").innerHTML = data;
},
"text"
);
}
setInterval(Heure, 1000);
</script>
</head>
<body>
<div id="test" ></div>
</body>
</html>
Attachments (0)
Change History (3)
Changed July 20, 2010 12:25PM UTC by comment:1
Changed October 04, 2010 02:29PM UTC by comment:2
duplicate of http://dev.jquery.com/ticket/6242 ?
the proposed change in #6242 fixed the memory leak for me
It is possible to reduce the leak :
But there is still a memory leak.