Bootstrap 3 Template

This is a simple Twitter Bootstrap 3 template. You can fork it to get a ready to use Bootstrap 3 fiddle.

HTML

<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css">
<u class="btn" title="this is tooltip1">halllllo</u><br>
<u class="btn" title="this is tooltip2">halllllo</u><br>
<u class="btn" title="this is tooltip3">halllllo</u><br>

JavaScript

$(document).on("mouseover",".btn",function(){
		var ele 	= $(this);
		if(!ele.data("setthis")){ // check it. so we only bind it once
				$(this).tooltip({
						placement: 'bottom'
				});
        $(this).tooltip("show");
    		ele.data("setthis",true); // set this to true, prevent redundant setting
    }else{
    		console.log("Dont't Set Another Tooltip");
    }
});