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

I have a link that uses the Twitter Bootstrap Popover version 1.3.0 to show some information. This information includes a link, but every-time I move my mouse from the link to the popover, the popover just disappears.

How can I hold popover open long enough to enable the mouse to move into it? Then when the mouse moves out of the link and popover, hide it?

Or is there some other plugin that can do this?

share|improve this question
I know you already solved your issue, but in order for this to be helpful to future readers, please post some relevant code so it makes sense. – Sparky Oct 10 '11 at 19:12
Already add code. – Tinyfool Oct 11 '11 at 5:32
In your question? I see no code in the question. – Sparky Oct 11 '11 at 13:39
In my answer... – Tinyfool Oct 11 '11 at 14:20
3  
I'm not talking about the code in your answer... I'm talking about putting something more meaningful in your question above. This site is for the benefit of future readers as well as yourself. Your question should be formatted in such a way that it makes sense and that so somebody knows what you mean and could possibly figure it out. – Sparky Oct 11 '11 at 14:35
show 1 more comment

6 Answers

With bootstrap (tested with version 2) I figured out the following code:

$("a[rel=popover]")
            .popover({
                offset: 10,
                trigger: 'manual',
                animate: false,
                html: true,
                placement: 'left',
                template: '<div class="popover" onmouseover="$(this).mouseleave(function() {$(this).hide(); });"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"><p></p></div></div></div>'

            }).click(function(e) {
                e.preventDefault() ;
            }).mouseenter(function(e) {
                $(this).popover('show');
            });

The main point is to override template with mouseleave() enabler. I hope this helps.

share|improve this answer
1  
This worked for me. I wish this feature were built-in better so you don't have to pass this verbose 'template' option. The 'template' option isn't even documented at twitter.github.com/bootstrap/javascript.html#popovers. – Tyler Rick Jun 1 '12 at 1:33
works but if you leave the container which triggers the popover it stays there until you hover the popover itself. – Simon Apr 12 at 15:52
doesnt work...... – vikas devde Apr 13 at 16:30

This issue on the bootstrap github repo deals with this problem. fat pointed out the experimental "in top/bottom/left/right" placement. It works, pretty well, but you have to make sure the popover trigger is not positioned statically with css. Otherwise the popover won't appear where you want it to.

HTML:

<span class="myClass" data-content="lorem ipsum content" data-original-title="pop-title">Hover me to show a popover.</span>

CSS:

/*CSS */
.myClass{ position: relative;}

JS:

$(function(){
  $('.myClass').popover({placement: 'in top'});
});  
share|improve this answer
Works for me! Tested on Chrome and Firefox. However I got some inconsistencies with how the content of the popover is displayed, as fat warns in one of the issue's comment – mokagio Mar 21 '12 at 9:35
great, this works for me, thanks - this is almost as neat as built in:) – lzprgmr Aug 17 '12 at 9:13
2  
If you're looking for a good alternative to bootstrap's popover that includes more customization, check out stevenbenner.github.com/jquery-powertip – stevendaniels Aug 19 '12 at 3:05
no work.......... – vikas devde Apr 13 at 16:31
this doesn't work on v2.3.1 – Guangnan Cheng Apr 24 at 14:43

Just to add to Marchello's example, if you want the popover to disappear if the user moves their mouse away from the popover and source link, try this out.

var timeoutObj;
$('.nav_item a').popover({
    offset: 10,
    trigger: 'manual',
    html: true,
    placement: 'right',
    template: '<div class="popover" onmouseover="clearTimeout(timeoutObj);$(this).mouseleave(function() {$(this).hide();});"><div class="arrow"></div><div class="popover-inner"><h3 class="popover-title"></h3><div class="popover-content"><p></p></div></div></div>'
}).mouseenter(function(e) {
    $(this).popover('show');
}).mouseleave(function(e) {
    var ref = $(this);
    timeoutObj = setTimeout(function(){
        ref.popover('hide');
    }, 50);
});
share|improve this answer
This worked really well. Instead of setting options for each popup in javascript, you can add the offset, trigger, html, and placement directly into the html on data properties. – Gavin Miller Jan 19 at 20:51
confirmed that it works with version 2.2.2 – rynop Jan 25 at 15:00
1  
why am getting error says " timeoutObj is not defined" when move into the popover – chenliang Mar 6 at 2:19
What version of bootstrap/jquery are you using? Did you copy the code verbatim? If not, paste your code and I can try to help. – Kevin Lawrence Mar 6 at 19:35
Thank you thank you thank you! – RAS May 18 at 21:52

This is a little hacky, but building off of marchello's example, I did this (no need for template):

$(".trigger-link").popover({
  trigger: "manual",
}).on("click", function(e) {
  e.preventDefault();
}).on("mouseenter", function() {
  $(this).popover("show");
  $(this).siblings(".popover").on("mouseleave", function() {
    $(this).hide();
  });
}).on("mouseleave", function() {
  var _this = this;
  setTimeout(function() {
    if (!$(".popover:hover").length) {
      $(_this).popover("hide")
    }
  }, 100);
});

The setTimeout helps ensure that there's time to travel from the trigger link to the popover.

share|improve this answer
Thank you. I tried every answer on this page and yours is the only one that worked. You are awesome. – Tabetha Moe yesterday
up vote 0 down vote accepted

Finally I fix this problem. Popover disappear is because Popover not child node of link, it is child node of body.

So fix it is easy, change bootstrap-twipsy.js content:

change .prependTo(document.body) to .prependTo(this.$element)

and fix position problem cause by change.

and some use link tiger popover will cause popover with link too, so add a span contain link, so problem solved.

share|improve this answer
1  
This works, albeit with some issues: 1 styling is inherited from the target 2. positioning is wrong elements in the topbar (I suspect it's to do with the floating) – mcintyre321 Nov 4 '11 at 13:51
So I said "fix position problem cause by change.". – Tinyfool Dec 3 '11 at 2:10
How do you fix the position problems? It seems to work fine in Chrome/Safari but not in Firefox (ie the position of the popovers is bad in Firefox). – Rahil Sondhi Apr 2 '12 at 22:38
This solution is great if you're working with a simple site. If you have a complex layout and other elements on the page using z-index, then you can quickly run into some big z-index headaches if you append the tooltip to the element and there is another element on the page that disrupts z-index stacking. – Brian Oct 18 '12 at 22:34
1  
Please note: As of version 2.3.0 of Bootstrap you can define the container the Popover is appended to (twitter.github.com/bootstrap/javascript.html#popovers). So the code Tinyfool is suggesting isn't needed anymore. However, in the case of appending it to a Anchor element itself, the whole Popover and its contents becomes a hyperlink. – DaFrenk Feb 15 at 9:32

At the end of the conversation linked by @stevendaniels is a link to a Twitter Bootstrap extension called BootstrapX - clickover by Lee Carmichael. This changes the popover from an overlarge tooltip into an interactive control, which can be closed by clicking elsewhere on the form, a close button, or after a timeout. Its easy to use, and worked very well for the project I needed it in. Some examples of its usage can be found here.

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.