Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Twitter's Bootstrap to implement tooltips. Currently, the tooltips appear above the link. I would like the tooltip to appear underneath the link. How would I go about doing this?

I am triggering the tooltip and it clearly states "bottom" but it doesn't want to work for me...

<script>$('#home').tooltip('hide bottom')</script>
share|improve this question
can you show some type of code? – Scott Selby Jul 19 '12 at 19:35

4 Answers

up vote 5 down vote accepted
    $('#tooltip').tooltip({
        placement : 'left',
        title : 'first tooltip'
    });

Use this inside <script> tags.

share|improve this answer
this one seemed to work for me! thank you very much, i appreciate the help. – Jonathan Jul 19 '12 at 19:47

Assuming you're using the latest Bootstrap you would use the placement of "bottom". You can do this via the options when you create the tooltip: $("#tt").tooltip({placement: "bottom"}); or via the data attribute on the element: <span data-placement="bottom" ...>tooltip!</span> I believe.

You can find more information on the tooltip in the Bootstrap tooltip section.

share|improve this answer

on the bootstrap website they show options for the tooltips. one of the options is placement which can be set to top, bottom, right or left.

so when you add the script for your tooltip put the option like this

$('#example').tooltip({placement: "bottom"})
share|improve this answer
So I modified the code based on your input, but the tooltips are still appearing above the links. This is what I currently have: <script>$('#home').tooltip('{trigger:hover}{placement:bottom]')</script> – Jonathan Jul 19 '12 at 19:44
you need " around bottom and } at the end of bottom not ]. everything else looks good – Eric Robinson Jul 19 '12 at 19:45
actually let me re-write that for you <script>$('#home').tooltip('{trigger: "hover", placement: "bottom"}');</script> – Eric Robinson Jul 19 '12 at 19:46

Bootstrap tooltip has a "placement" option. You can set it to "bottom" like this:

$('#home').tooltip({
    "placement" : "bottom"
});

See their official website for references.

share|improve this answer
I dont think you need quotes around placement – Eric Robinson Jul 19 '12 at 19:43
Right. You don't have to if it's a valid variable name (in this case). – user322896 Jul 19 '12 at 19:48

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.