Side navigation
#6229 closed bug (duplicate)
Opened March 05, 2010 08:18AM UTC
Closed October 02, 2010 03:29PM UTC
$.ajax has memory leak in IE8
Reported by: | szkane | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | 1.4.2 |
Component: | ajax | Version: | 1.4.2 |
Keywords: | ajax | Cc: | |
Blocked by: | Blocking: |
Description
in IE8 the memory will grow,but in firefox have not this proplem. Is it a bug?
$(function(){
window.setInterval(go,100)
})
function go(){
var url="http://localhost/test.json";
$.ajax({
type: "GET",
url: url,
dataType: "json",
success: function(j){
$("#test").html(j.a);
}
});
}
Attachments (0)
Change History (2)
Changed March 08, 2010 03:53PM UTC by comment:1
Changed October 02, 2010 03:29PM UTC by comment:2
priority: | → undecided |
---|---|
resolution: | → duplicate |
status: | new → closed |
Referencing 6242, this bug has been reported on in more depth on that ticket. It also appears to contain comments from others who have experienced the same issue and contains additional test cases and workarounds.
Closing as duplicate.
See my new ticket 6242 and how I believe I solved the issue, at least me IE8 does not leak any more memory when I use the ajax function every second.