[jQuery] Re: jQuery - clueTip : how to disable it ?

2008-05-25 Thread Lideln
Mmmmh... Thanks for the answer, but... It's a bit complicated no ? I thought, maybe a : $('#myObject").removeTooltip() That would idealy call a function restoring all previous event functions and releasing memory. It has to be written for each plugin ? On 25 mai, 16:21, Ryura <[EMAIL PROTECTED

[jQuery] Re: jQuery - clueTip : how to disable it ?

2008-05-25 Thread Ryura
I tend to store the object before tooltip cloned in a variable, then when the tooltip is no longer needed, remove the old object and do a nice after(var); ie: var x = $("#id").clone(); x.clueTip(); $("#id").remove().after(x); On May 25, 9:18 am, Lideln <[EMAIL PROTECTED]> wrote: > Hi all, > > I