Answer the question
In order to leave comments, you need to log in
How to prevent collapse panel from closing in bootstrap 3?
I need one of the items to be open all the time bootstrap-3.ru/javascript.php#collapse-examples
did not find such information in the docks.
Answer the question
In order to leave comments, you need to log in
Run this code on the example
page :
$('#accordion a:first').on('click', function(e) {
if (!$( this ).hasClass('collapsed')) {
e.preventDefault();
e.stopPropagation();
}
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question