jquery - Can't place Twitter Bootstrap Tooltip -
see http://jsbin.com/ocufez/1/edit
$('div').tooltip placement: 'right'
this not placing tooltip @ right side of div.
how can place tooltip?
note: have click run js
, hover last div in jsbin
i think jqueryui - jquery-ui.min.js conflicting bootstrap.js both have .tooltip() if remove jqueryui you'll see bootstrap tooltip on right.
or can put jquery-ui.min.js before bootstrap.js...
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1/jquery-ui.min.js"></script> <script src="http://twitter.github.io/bootstrap/assets/js/bootstrap.js"></script>
Comments
Post a Comment