The canonical example for Twitter Bootstrap’s popover feature is sort of a tooltip on steroids with a title.
HTML:
<a href="#" id="blob" class="btn large primary" rel="popover" data-content="And here's some amazing content. It's very engaging. right?" data-original-title="A title">hover for popover</a>
JS:
<script>
$("#blob").popover({offset: 10});
</script>
I’d like to use popover to display an image. Is this possible?
Very simple 🙂
http://jsfiddle.net/weuWk/