MultipleToolTips

HTML

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<div>
    <h1 rel="tooltip" title="This is Normal tooltip" class="example">Tooltip1 with normal width </h1>
<a href="#" rel="tooltip" title="Tool tip with large text Tool tip with large text Tool tip with large text Tool tip with large text Tool tip with large text Tool tip with large text"  class="example2">Tooltip 2 with larger width</a>
</div>

CSS

.tooltip-inner {
    max-width: 350px;
    width: 350px;
}

JavaScript

$('.example').tooltip();
$('.example2').tooltip({animation:false});