Bootstrap Skeleton
This is a simple Bootstrap skeleton. You can fork it to get a ready to use Bootstrap fiddle.
HTML
<script src="http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.0.1/bootstrap.min.js"></script>
<div class="container">
<div class="well">
<ul>
<li>A</li>
<li><a id="alertMe" href="#">B</a></li>
<li>C</li>
</ul>
</div>
</diV>
CSS
@import url('http://getbootstrap.com/2.3.2/assets/css/bootstrap.css');
.container {
margin-top: 10px;
}
.top-div {
padding-top: 35px;
}
JavaScript
$('#alertMe').click(function(e) {
e.preventDefault();// prevent the default anchor functionality
alert('alerted');
});