I have a cluetip that is set to sticky and opens when one clicks a link. I also set a close button on the cluetip and all of that works great. I want to close the cluetip if someone clicks outside of the cluetip in addition to the current close button. I am looking for the hover out solution, just a close on click outside of the cluetip.

link|improve this question
feedback

4 Answers

up vote 1 down vote accepted

According to the FAQ, there is an API method to let you trigger a close:

New as of clueTip 1.0.3: How do I programmatically close (hide) a clueTip? If you want to trigger a clueTip to close, based on some other interaction, you can use the following code: $(document).trigger('hideCluetip');

So I think you could do something like this:


$('#myCluetip').cluetip({
  onShow: function() {
    $(document).one('mousedown',function() {
      $(document).trigger('hideCluetip');
    })
  });
});

This works by binding a one-time event handler for the mousedown event to the document body, which then triggers the event that the Cluetip folks say will hide open Cluetips. Using the one-time event handler means that you're not sending the hideCluetip trigger every single time somebody clicks on something.

link|improve this answer
I ended up taking this concept of using hideClueTip but bound and unbound the events for mouseup via the onShow and onHide hooks depending if the click was in the tip or not (i decided to close the tip when click outside of tip). – momos Apr 15 '11 at 4:10
@mornos Nice idea! – Stony Apr 15 '11 at 5:17
@mornos - can you post your solution ? – leora Oct 6 '11 at 2:07
feedback

It would be helpful to see your code but anyway you can do something along these lines;

$(document).click(function(e) {
    if (!$(e.target).hasClass('cluetip'))
    {
      // Close the cluetip here.  
    }
});
link|improve this answer
feedback

Stony's solution did not work for me.

I used @Gary Green's solution, and it works ok - but that's still not the exact "close on mouseout/hoverout" solution I wanted.

Finally, I figured out that Cluetip itself provides a way to do this.

Just set the value "mouseOutClose: false" , like this:

$("#myForm :input").cluetip(
    {
        sticky: true, 
        closePosition: 'title', 
        arrows: true,
        mouseOutClose: true
    }
);
link|improve this answer
feedback

Here's how I did it:

    onShow: function() {
        // close cluetip when users click outside of it
        $(document).click(function(e) {
            var isInClueTip = $(e.target).closest('#cluetip');
            if (isInClueTip.length === 0) {
                $('.cluetip-default').hide();
            }
        })
    },
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.