I think I found a simpler solution to this question that just includes Bootstrap and jQuery.
See http://jsfiddle.net/key2xanadu/zfsfz0c9/ .
The solution includes identifying puppy tags and then installing them at the bottom:
$('document').ready(function () {
$("#text_title").tooltip({placement: 'bottom', title:"HELLO TITLE!"});
$("#label_one").tooltip({placement: 'bottom', title:"HELLO ONE!"});
$("#label_two").tooltip({placement: 'bottom', title:"HELLO TWO!"});
});
The example also shows how to add tooltips to the title!
source
share