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

I'm using Twitter bootstrap tooltips with javascript like the following:

$('a[rel=tooltip]').tooltip();

My markup looks like this:

<a rel="tooltip" title="Not implemented" class="btn"><i class="icon-file"></i></a>

This works fine, but I add <a> elements dynamically and the tooltips aren't showing up for those dynamic elements. I know it's because I only bind .tooltip() once when the document is finished loaded with the typical jquery $(document).ready(function() functionality.

How can I bind this to dynamically created elements? Usually I would do this via the jquery live() method. However, what is the event that I use to bind? I'm just not sure how to hook up the bootstrap .tooltip() with jquery .live().

I've found one way to make this work is something like this:

/* Add new 'rows' when plus sign is clicked */
$("a.add").live('click', function () {
    var clicked_li = $(this).parent('li');
    var clone = clicked_li.clone();

    clone.find(':input').each(function() {
        $(this).val('');
    });

    clicked_li.after(clone);
    $('a[rel=tooltip]').tooltip();
});

This works, but seems kind of hackish. I'm also calling the exact same .tooltip() line in the $(ready) call. So, do the elements that exist when the page first loads and match that selector end up with the tooltip twice?

I don't see any problems with this approach. I'm just looking for a best practice or understanding of the behavior.

share|improve this question
hmm good question, will this help? github.com/twitter/bootstrap/issues/2374 – Tim Mar 31 '12 at 19:16
That's an interesting read, but I'm only wanting a single type of tooltip. I just want to make sure any dynamically added elements that match the tooltip selector get added, which isn't the case. – durden2.0 Apr 1 '12 at 2:44
2  
Great question. Seems like an oversite on the part of twitter. – Luke The Obscure May 22 '12 at 18:26
@durden2.0 How did Christians answer work for you? Care to accept as correct? – Ruslan Uralov Aug 22 '12 at 10:13
@Ruslan Yes, that solution works. Updated the answer. Thanks for the reminder. – durden2.0 Aug 22 '12 at 14:31
show 1 more comment

5 Answers

up vote 77 down vote accepted

Try this one:

$('body').tooltip({
    selector: '[rel=tooltip]'
});
share|improve this answer
2  
Great. This is the correct answer, because it's basically the substitute of live/on. – Mahn Jul 3 '12 at 21:57
Curious, how does this work exactly? – Calvin L Jul 7 '12 at 0:46
2  
1  
This should be the accepted answer - works like a charm – Horen Aug 15 '12 at 12:53
2  
@barbolo, simply use different selectors for different configurations. This is the right solution. Btw, it works also with Popover. – Enrico Carlesso Sep 19 '12 at 10:22
show 3 more comments

For me, only catching the mouseenter event was a bit buggy, and the tooltip was not showing/hiding properly. I had to write this, and it is now working perfectly:

$(document).on('mouseenter','[rel=tooltip]', function(){
    $(this).tooltip('show');
});

$(document).on('mouseleave','[rel=tooltip]', function(){
    $(this).tooltip('hide');
});
share|improve this answer
1  
This was very helpful insite as to why .on('hover') wouldn't work right. – Adam Aug 16 '12 at 13:03

For me, this js reproduces the same problem that happens with Paola

My solution:

$(document.body).tooltip({selector: '[title]'})
.on('click mouseenter mouseleave','[title]', function(ev) {
    $(this).tooltip('mouseenter' === ev.type? 'show': 'hide');
});
share|improve this answer

I found a combination of these answers gave me the best outcome - allowing me to still position the tooltip and attach it to the relevant container:

$('body').on('mouseenter', '[rel=tooltip]', function(){
  var el = $(this);
  if (el.data('tooltip') === undefined) {
    el.tooltip({
      placement: el.data("placement") || "top",
      container: el.data("container") || false
    });
  }
  el.tooltip('show');
});

$('body').on('mouseleave', '[rel=tooltip]', function(){
  $(this).tooltip('hide');
});

Relevant HTML:

<button rel="tooltip" class="btn" data-placement="bottom" data-container=".some-parent" title="Show Tooltip">
    <i class="icon-some-icon"></i>
</button>
share|improve this answer

If you have multiple tooltip configurations that you want to initialise, this works well for me.

$("body").tooltip selector: '[data-toggle="tooltip"]'

You can then set the property on individual elements using data attributes.

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.