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="myPopoverContent">
   ...stuff...
</div>
<a ng-href="" data-toggle="popover"><span class="badge">12</span> You have 12 messages.</a>

CSS

@import url('http://getbootstrap.com/dist/css/bootstrap.css');

#myPopoverContent {display: none;}

JavaScript

$('[data-toggle=popover]').popover({
    content: $('#myPopoverContent').html(),
    html: true
}).click(function() {
    $(this).popover('show');
});