I would like to know how to do Bootstrap 3 Collapse in the Hover and if it is clicked it will be fixed (Do not close) and only close if another collapse is clicked.
With the following code I was able to get it to open in the hover, but I can not pin it to the click.
// Classe .menu-header abraça todo o collapse para que ele nao feche ao retirar o hover do botão.
$('.menu-header').hover(function () {
$('#administrativoCollapse').toggleClass('in');
});