I am using Twitter Bootstrap--and I am not a frontend developer! However, it\'s making the process almost--dare I say--fun!
I\'m a bit confused about tooltips. The
Add this into your header
<script> //tooltip $(function() { var tooltips = $( "[title]" ).tooltip(); $(document)(function() { tooltips.tooltip( "open" ); }); }); </script>
Then just add the attribute title="your tooltip" to any element
title="your tooltip"