I am trying to convert bootastap 4 accordion on hover and yes I did but exactly not working as expected.
here is my code
$('.accordion .card-header button').on('mouseenter', function(event) {
event.preventDefault();
$( '.accordion .card' ).children('.collapse' ).collapse('show');
})
and here is the codepen
Here's a less verbose approach...
$('[data-toggle="collapse"]').on('mouseenter', function() {
$(this).parents('.card').find('.collapse').collapse('show');
})