How fast is the Bootstrap 4 collapse animation? I am unable to find it in the messy bootstrap.js
file.
My goal is to scroll down to the bottom of unpacked div with the same speed as the default Bootstrap collapsing. I use a code from here.
$("html, body").animate({scrollTop: $("#myID").scrollTop()}, 1000);
I want to find a precise value instead of 1000
which is too small causing the scrolling is slow.