Ticket #15 (closed bug: invalid)
Memory leaks with ready()
| Reported by: | franck.marcia@… | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.0 |
| Component: | event | Version: | 1.0 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Memory leaks are detected by the extension Leak Monitor ( https://addons.mozilla.org/firefox/2490/) when one uses event ready().
Install it and load pages from jquery.com. It'll pop up this kind of message: (Leaks in window 0x2d27dd0: [+] [leaked object] (3d7d950, http://proj.jquery.com/js/jquery.js, 14-14) = function () {
if ($.$$timer) {
clearInterval($.$$timer); $.$$timer = null; for (var i = 0; i < $.$$ready.length; i++) {
$.apply(document, $.$$ready[i]);
} $.$$ready = null;
}
}
[ ] $$guid = 1 [ ] prototype (2c59268) = [object Object]
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

This code is no longer in the current version of jQuery. All the hacky timer stuff was removed to make way for the stuff that actually worked.