disable Bootstrap's Collapse open/close animation

animation, javascript, twitter-bootstrap

Solution

For Bootstrap 3 and 4 it's

.collapsing {
    -webkit-transition: none;
    transition: none;
    display: none;
}

Problem

Any trick to disable the open/close animation of Collapse groups ?

Original source

Related problems