I finally got Bootstrap tabs to work. I was wondering if there\'s a way to change the behaviour so instead of clicking just hovering the cursor would show the hidden content?
JavaScript:
In your $(document).ready or elsewhere ... put something like this:
$('.nav-tabs[data-toggle="tab-hover"] > li > a').hover( function(){ $(this).tab('show'); });
HTML:
....