Skip to content

Instantly share code, notes, and snippets.

@LeoLopesWeb
Last active September 9, 2023 22:21
Show Gist options
  • Save LeoLopesWeb/d140e50e910430dd61e5d513c3920b7d to your computer and use it in GitHub Desktop.
Save LeoLopesWeb/d140e50e910430dd61e5d513c3920b7d to your computer and use it in GitHub Desktop.
// click item to #tab scroll
let tabitem = document.querySelectorAll('#tabs li');
tabitem.forEach(function (el) {
el.addEventListener('click', function (event) {
document.getElementById("tabs").scrollTo({
top: 0,
left: el.offsetLeft,
behavior: "smooth",
});
}, false);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment