Hover over help in Bootstrap -
what easiest method in bootstrap showing small amount of text when hover on piece of text ?? ive found solutions using jquery, css wondered simpliest method is.
thanks,
a simple example have
<span class="has-hover" data-toggle="tooltip" title="first tooltip">hover on me</span>
in html ,
$(".has-hover").tooltip({placement: "bottom"});
in js (example in jsfiddle)
bootstrap tooltips explained in detail @ http://twbs.github.io/bootstrap/javascript/#tooltips
Comments
Post a Comment