Karl,
$('#cluetip').hide();
this was all i needed. thanks a ton.
Tim
On Nov 25, 4:28 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> You could try something like this:
>
> $('someListItem').click(function() {
> $('#cluetip').hide().removeClass().children().empty();
>
> });
>
> Replace "someListItem" with the actual selector you need.
>
> Let me know if this works for you.
>
> --Karl
> _________________
> Karl Swedbergwww.englishrules.comwww.learningjquery.com
>
> On Nov 25, 2007, at 2:20 PM, Tim wrote:
>
>
>
> > i am using clueTip with ajax to grab a list from a db. i would like
> > the clueTip to close when the user selects an item from the list. i'm
> > guessing there is an easy way to do this, but i've tried for a while
> > now without any success. i tried calling cluetipClose() with the
> > onclick event, but since the clueTip is a separate web page, it is
> > saying that cluetipClose() is not defined. any ideas? thanks.