hopefully interesting:
http://webreflection.blogspot.com/2009/04/divexpando-null-or-divremoveattributeex.html

but does not solve this specific problem.
Regards

On Fri, Apr 24, 2009 at 5:29 PM, Josh Naro <joshn...@gmail.com> wrote:

>
> Drip seems to claim everything leaks. I've been using sIEve, and it
> seems to give a more accurate account of the references. I also found
> this little jQuery plugin quite useful for eliminating IE references
> (source
>
> http://groups.google.com/group/jquery-en/browse_thread/thread/b66a0d05092dbeb/7ff7e0e72722db04?lnk=gst&q=remove+leak#7ff7e0e72722db04
> ):
>
> jQuery.fn.discard = function(){
>    var garbageBin = document.getElementById('IELeakGarbageBin');
>    if (!garbageBin) {
>        garbageBin = document.createElement('DIV');
>        garbageBin.id = 'IELeakGarbageBin';
>        //garbageBin.style.display = 'none';
>        document.body.appendChild(garbageBin);
>    }
>
>    this
>        .unbind() //unbind all handlers
>        .each(function(){ // move the element to the garbage bin
>            garbageBin.appendChild(this);
>            garbageBin.innerHTML = '';
>        });
>
>    garbageBin = null;
>
> }
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to jquery-dev@googlegroups.com
To unsubscribe from this group, send email to 
jquery-dev+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to