Answer the question
In order to leave comments, you need to log in
How to make smooth scroll to bootstrap tab?
How to make smooth scroll to bootstrap tab when clicking on a link? For some reason, the smooth scrolling to the open taboo itself does not occur
Here I posted the code https://codepen.io/marishik92/pen/NWGyjqw. Here you click on the link "All characteristics"
Answer the question
In order to leave comments, you need to log in
Bootstrap is tied to jQuery → which can do this:
$(".clickelem").click(function (){
$('html, body').animate({
scrollTop: $("#tabname").offset().top
}, 2000);
});
window.scrollTo({
top: [elem offset top],
behavior: "smooth"
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question