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 going mad here.

I've got the following HTML:

<a href="#" rel="tooltip" title="A nice tooltip">test</a>

And the Bootstrap style tooltip refuses to display, just a normal tooltip.

I've got bootstrap.css working just fine, and I can see the classes in there

I've got all of the relevant JS files at the end of my HTML file:

<script src="bootstrap/js/jquery.js"></script>
<script src="bootstrap/js/bootstrap-alert.js"></script>
<script src="bootstrap/js/bootstrap-modal.js"></script>
<script src="bootstrap/js/bootstrap-transition.js"></script>
<script src="bootstrap/js/bootstrap-tooltip.js"></script>

I've looked at the source of Bootstrap's example and cannot see anything that initiates the tooltip anywhere in there. So I'm guessing it should just work, or am I missing something vital here?

I've got modals and alerts and other things working just fine, so I'm not a total moron ;)

Thanks for any help!

share|improve this question
1  
The tooltip is being initiated in the application.js file in twitters example. Can you post your html? Would like to take a look at how you're initializing the script. – Andres Ilich Feb 25 '12 at 18:14
1  
Ahhhhh.... I ignored that given the first comment. So should this work: code<a href="#" rel="tooltip" title="A nice tooltip" class="tooltip-test">test</a><br> <script> // tooltip demo $('.tooltip-test').tooltip() </script> – Mike Bartlett Feb 25 '12 at 20:33
1  
don't forget to pass a selector to the tooltip options, $('.tooltip-test').tooltip({ selector: "a" }) – Andres Ilich Feb 25 '12 at 21:01
Thanks Andres. Actually I didn't seem to need the selector in there, I think that's because the class of the a is referenced as tooltip-test. – Mike Bartlett Feb 25 '12 at 21:28
3  
Without the selector option the tooltip does not work for me, here is a demo i put up: jsfiddle.net/VXctp, try it without the selector. – Andres Ilich Feb 25 '12 at 22:06
show 1 more comment

8 Answers

To sum up: activate your tooltips using jQuery selectors

<script type="text/javascript">
    $(function () {
        $("[rel='tooltip']").tooltip();
    });
</script>

In fact, you don't need to use the attribute selector, you can invoke it on any element even if it doesn't have rel="tooltip" in its tag.

share|improve this answer
6  
For those working with Rails, this is already defined in bootstrap.js.coffee with $(".tooltip").tooltip(). Just make sure to include //= require bootstrap in your application.js. – slhck Apr 15 '12 at 17:08
Adding the class .tooltip to any element will break the tooltips for me. The content inside the element with the class .tooltip will hide and the tooltip will show if I manage to found the hidden element in with my mouse. Using any other selector or class name will work fine.\ – Leito Feb 12 at 20:06
1  
@Leito that is correct, bootstrap defines styles for .tooltip and by default, they are invisible. You can use the rel attribute or any other class as a selector, though. – Manuel Feb 12 at 22:26
Yes, you need BOTH the HTML Markup and the JS Selectors. These are not alternative ways to apply tooltips. – ATSiem May 14 at 23:22

You dont need all js files separately

Just use the following files if you are going to use all bootstrap functions:

-bootstrap.css
-bootstrap.js

both of them can be found in http://twitter.github.com
and finally
-Latest version of jquery.js


For Glyphicons you need the image

glyphicons-halfings.png and/or glyphicons-halfings-white.png(white coloured images)
which u need to upload inside /img/ folder of u r website (or) store it where ever u want but change the folder directory inside the bootstrap.css


For tooltip u need the following script inside your <head> </head> tag

  <script type='text/javascript'>
     $(document).ready(function () {
     if ($("[rel=tooltip]").length) {
     $("[rel=tooltip]").tooltip();
     }
   });
  </script>

That's it...

share|improve this answer

If everything is still not resolved Use Latest Jquery library, you dont need any of the jquery selectors if you use the latest bootstrap 2.0.4 and jquery-1.7.2.js

Just use rel="tooltip" title="Your Title" data-placement=" "

Use top / bottom / left / right in the data-placement as per your wish.

share|improve this answer

I have added jquery and bootstrap-tooltip.js in header. Adding this code in footer works for me! but when i add the same code in header it doesn't work!

<script type="text/javascript">
$('.some-class').tooltip({ selector: "a" });
</script>
share|improve this answer
3  
In this case the DOM hasn't loaded yet so all elements my not exist on the page. Wrap the code above in $(function() { ... }); – johnml Apr 24 '12 at 20:23

In my particular case, it didn't work because I was including two versions of jQuery. One for bootstrap, but another one (another version) for Google Charts.

When I remove the jQuery loading for the charts, it works fine.

share|improve this answer

Put your code inside document ready

$(document).ready(function () {
    if ($("[rel=tooltip]").length) {
        $("[rel=tooltip]").tooltip();
    }
});

In my case I was also missing the tooltip css classes on http://twitter.github.com/bootstrap/assets/css/bootstrap.css so son't forget that.

share|improve this answer

If using Rails+Haml is much easier to include the tooltip, just do:

= link_to '', some_path(), :class => "btn btn-success btn-mini icon-plane", :rel => "tooltip", :title => "Referential Guide"

That is just add the following line at the end of the element.

:rel => "tooltip", :title => "Referential Guide"
share|improve this answer
Was really hoping that was going to work for me, but alas it did not. – turboladen Mar 9 at 5:55
Now I am more into Djanto than Rails but if you paste your code I might try to give you some tip. – Andres Calle Mar 10 at 19:34

Tooltip and popover are NOT only-css plugins like dropdown or progressbar. To use tooltips and popover, you MUST to activate them using jquery (read javascript).

So, lets say we want a popover to be shown on click of an html button.

<a href="#" role="button" 
     class="btn popovers-to-be-activated" 
     title="" data-content="And here's some amazing content." 
     data-original-title="A Title" "
>button</a>

Then you need to have following javascript code to activate popover:

$('.popovers-to-be-activated').popover();

Actually, above javascript code will activate popover on all the html elements which have class "popovers-to-be-activated".

Needless to say, put the above javascript inside DOM-ready callback to activate all popovers as soon as DOM is ready:

$(function() {
 // Handler for .ready() called.
 $('.popovers-to-be-activated').popover();
});
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.