Bootstrap 3 Skeleton

This is a simple Bootstrap skeleton. You can fork it to get a ready to use Bootstrap fiddle.

by smlombardi

HTML

<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.1.0/bootstrap.min.js"></script>
<div id="foo">...stuff...</div>
<a ng-href="" data-toggle="popover" data-pop="foo" title="bar"><span class="badge">12</span> You have 12 messages.</a>

CSS

@import url('http://getbootstrap.com/dist/css/bootstrap.css');
 #foo {
    display: none;
}

JavaScript

$('[data-toggle="popover"]').popover({
			    trigger: 'click', // or hover
			    html: true,
                content: $(this).attr("title"),
			   'placement': 'bottom'
			});