I use Bootstrap’s tooltip feature.  It certainly improves design from the default browser implementation, but it can be a pain to debug because it disappears as the element is inspected.  Forcing the ‘hover’ state does not do the trick either.  As a result, you can force open all tooltips with a bit of Javascript, like so:

[dt_code]jQuery( ‘.mytooltipselector’ ).tooltip( { trigger: ‘manual’ } ).tooltip( ‘show’ );[/dt_code]