Popover test
https://github.com/twitter/bootstrap/issues/3495
by kalmarsh80
HTML
<script src="http://twitter.github.io/bootstrap/assets/js/bootstrap.js"></script>
<a href="#" class='notice-file'
data-placement="right"
data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus."
title=""
>Popover on right</a>
<br/><br/>
<button id='show'>show popover</button>
CSS
@import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');
body{margin:50px;}
JavaScript
$("#show").click(function(){
setTimeout(function() {
$('.notice-file').popover('show');
}, 500);
setTimeout(function() {
$('.notice-file').popover('hide');
}, 5500);
});
//$('.btn').popover('show');