Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got a little application where I use jQuery UI's Tooltip function and Colorbox. You can find it here

When I go with the mouse over the wordmap (now only Rioolreiniging and Rioolinspectie), the tooltip appears fine, as it should do.

When clicking on the word, there should open a Lightbox (Colorbox) with the text of all tooltips. Works fine too.

But when i close the Colorbox, the Tooltip stays... How can I solve this problem?

Thank you in advance!

share|improve this question

1 Answer

Colorbox has the event "onClosed". You have to call:

$('MY_ID').colorBox({ onClosed: function(){ 
    $( ".selector" ).tooltip( "close" ); } 
})
share|improve this answer
Really thanks. I already tried something similar (destroy and then create the tooltip again), but didn't work. Thank you very much! – Tom V. Feb 6 at 10:51
1  
it should be the "event".. not the "even" i guess :-) – Rifky Feb 6 at 12:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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