[jQuery] Re: Cluetip, opening tip via code

2009-03-19 Thread batuj
Awesome idea, I tried that however the problem is, in order to make it work, the cluetip I bind to component should be activated with a user click before the trigger mechanism become able to work. That means, if I run trigger('click') before clicking the element by hand, It doesn't work. But after

[jQuery] Re: Cluetip, opening tip via code

2009-03-18 Thread Karl Swedberg
You could trigger the activation event. Something like this, maybe: $('#mytip').cluetip({activation: 'click'}); And then later, when you want to show it: $('#mytip').triggerHandler('click'); Or if you don't have activation: 'click', you could just do this: $('#mytip').trigger('mouseover') H

[jQuery] Re: Cluetip, opening tip via code

2009-03-18 Thread batuj
I couldn't manage to get anything with : hoverClass: 'highlight' option. thanks anyway.. any other ideas? On Mar 18, 12:52 pm, "ryan.j" wrote: > have a look at the hoverClass option > > On Mar 18, 9:50 am, batuj wrote: > > > Hi, > > > Does anyone have a clue about how to open the tipbox withi

[jQuery] Re: Cluetip, opening tip via code

2009-03-18 Thread ryan.j
have a look at the hoverClass option On Mar 18, 9:50 am, batuj wrote: > Hi, > > Does anyone have a clue about how to open the tipbox within the code, > I tried to meant without user clicking or activating anything when I > bind cluetip to a component, I do want the tip box to be open. > > Thanks