<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<div class="container">
<div class="row">
<h2>Tooltips with OPTIONS set in HTML <small>but initialized in JS</small></h2>
<hr>
<a href="" data-toggle="myToolTip" data-placement="top" title="Quack!"><img src = "https://www.google.ca/search?q=duck+pictures&espv=2&biw=1268&bih=925&tbm=isch&imgil=1l-sZCAUkebKyM%253A%253B0mrznG83yICHQM%253Bhttp%25253A%25252F%25252Fkindersay.com%25252Fsigns%25252Fduck&source=iu&pf=m&fir=1l-sZCAUkebKyM%253A%252C0mrznG83yICHQM%252C_&usg=__Ugk9hR2XRjLSy7gvJpBbtvgbTBo%3D&ved=0CDsQyjc&ei=-zclVebJOdicygS6zoCABQ#imgrc=1l-sZCAUkebKyM%253A%3B0mrznG83yICHQM%3Bhttp%253A%252F%252Fkindersay.com%252Ffiles%252Fimages%252Fduck.png%3Bhttp%253A%252F%252Fkindersay.com%252Fsigns%252Fduck%3B445%3B355" alt = ""></a>
<hr>
<a href="#" data-toggle="myToolTip" data-placement="top" data-delay='{"show":2000, "hide":3000}' title="Tooltip with BIG delay" >
Default Tooltip with 2 second delay and 3 second hide delay </a>
<hr>
<a href="#" data-toggle="myToolTip" data-placement="top"
data-template='<div class="myToolTip" role="tooltip"><div class="tooltip-arrow">arrow</div><div class="tooltip-inner">inner</div></div>'>
Tooltip with template NOT WORKING???</a>
<hr>
<a href="#" data-toggle="myToolTip" data-placement="top" data-html="true" title="Fancy <b>tooltip<b> <h4>tooltip<h4></a>">Tooltip contains HTML</a>
<hr>
<button type="button" class="btn btn-default" data-toggle="btnToolTip" data-placement="right" title="Tooltip on right">Tooltip on right</button>
<hr>
<button type="button" class="btn btn-default" data-toggle="btnToolTip" data-placement="right" data-trigger="click" title="Tooltip on right">Tooltip you must CLICK on</button>
<hr>
<h2>Tooltips with OPTIONS set in JS</h2>
<div>
<ul>
<li><a href="#" class="tip-top" title="Tooltip on the top side">Tooltip on top</a></li>
<li><a href="#" class="tip-right" title="Tooltip on the right side">Tooltip on right</a></li>
<li><a href="#" class="tip-bottom" title="Tooltip the on bottom side">Tooltip on bottom</a></li>
<li><a href="#" class="tip-left" title="<b class='myColor'>Tooltip</b> on the left <i>side</i> with <h2>HTML</h2>">
Tooltip on left with HTML set with JavaScript</a></li>
<li><a href="#" class="tip-auto" title="<b class='myColor'>Tooltip</b> set to auto <i>side</i> with <h2>HTML</h2>">
Tooltip set to auto with HTML set with JavaScript</a></li>
</ul>