"TEST Tool Tip and jQuery"
Bootstrap 3.3.0 Snippet by mrose6

<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> <!------ Include the above in your HEAD tag ----------> <div class="container"> <div class="row"> <h2>Bootstrap Tooltips with jQuery by Mr. M. </h2> <hr> <a title="<h1>hello world</h1>" data-html="true" rel="tooltip" href="#">really ironic</a> <button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="left" data-html="true" title="<h1>Tooltip on left</h1>">Tooltip on left</button> <button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="top" data-html="true" title="<h1>Tooltip on top</h1>">Tooltip on top</button> <button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="bottom" data-html="true" title="<h1>Tooltip on bottom</h1>">Tooltip on bottom</button> <button type="button" class="btn btn-default" data-toggle="tooltip" data-placement="right" data-html="true" title="<h1>Tooltip on right</h1>">Tooltip on right</button> </div> </div>
$(function () { $('[data-toggle="tooltip"]').tooltip(), $("[rel=tooltip]").tooltip({html:true}); })

Related: See More


Questions / Comments: