I made a modification to the bootstrab.js file by changing 'click' to 'hover':
$(function () {
$('body').on('hover.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
e.preventDefault()
$(this).tab('show')
})
})
Now, I am looking for a way to close the content tab when there is no hover over the tab or content.
Any suggestions on how to achieve this?