KindOfGuy
KindOfGuy

Reputation: 3211

Bootstrap tooltips defy me

I am following the documentation as closely as I can, but I can't get the tooltips working. What am I doing wrong?

I've tried a lot of things. Here is some of what I've tried in a sample file.

http://anunexpectacle.com/micros/

I'm pretty desperate now. Please sort me out.

Upvotes: 1

Views: 330

Answers (1)

McGarnagle
McGarnagle

Reputation: 102743

It looks like your selector is wrong. When I used this, the tooltips appeared:

$("[rel=tooltip]").tooltip();

Note that $("tooltip") looks for HTML tags like <tooltip>something</tooltip>, but in this case (I guess) you mean to target the links, which have the attribute rel=tooltip.

Upvotes: 2

Related Questions