[jQuery] Re: Proper Memory Cleanup?

2008-07-03 Thread Scott
I wasn't asking how to clean up I know this already I was asking what to clean up On Jun 21, 5:26 am, Orkan [EMAIL PROTECTED] wrote: it depends of the object (proto) type ;) simple object could be cleaned this way: myObj = null; As far as I know, it is used to avoid memory leaks in

[jQuery] Re: Proper Memory Cleanup?

2008-06-21 Thread Orkan
it depends of the object (proto) type ;) simple object could be cleaned this way: myObj = null; As far as I know, it is used to avoid memory leaks in certain versions of IE 6, other browsers will do it automatically On Jun 20, 5:31 pm, Scott [EMAIL PROTECTED] wrote: Can someone point me to