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

How the new jQueryUI's tooltip widget can be modified to open the tooltip on click event on certain element's on document, while the others are still showing their tootip on mouseover event. In click-open case the tooltip should be closed by clicking somewhere else on the document.

Is this possible at all?

share|improve this question

2 Answers

up vote 0 down vote accepted

http://jsfiddle.net/rjGeS/83/

this will work for you i have tested it...
share|improve this answer
Thanks, but I preffer would like to use tooltip widget, because that would maintain my code simple. However, your suggestion is still a backup-plan if it can't be done with jQueryUI's own widget. So, anyone? – besq Feb 8 at 8:15

The previous answer does not use jqueryui and its quite complex.

This works:

HTML:

<div id="tt" >Test</div>

JS:

$('#tt').click(function() {
  $('#tt').tooltip({ items: "#tt", content: "Displaying on click"});
  $('#tt').tooltip("open");
});

You can check it using http://jsfiddle.net/adamovic/A44EB/

share|improve this answer

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.