-3

How do I get this think up and running? The bootstrap site was a little vague on what to actually do. I want tooltips to pop up when someone hovers over a link on my site.

madth3
  • 7,275
  • 12
  • 50
  • 74
user2275855
  • 1,127
  • 2
  • 10
  • 10
  • I am not sure which bootstrap site you were referring to, they have fairly good documentation and examples provided in their website to get you started and more. http://twitter.github.io/bootstrap/javascript.html#tooltips – PSL Jun 08 '13 at 01:15

1 Answers1

2

First:

<a href="#" class="link" data-original-title="first tooltip">Hover me for a tooltip</a>

Then:

$('.link').tooltip()

See Tooltips with Twitter Bootstrap.

Community
  • 1
  • 1
Joe Mornin
  • 8,766
  • 18
  • 57
  • 82