JavaScript
- 7 ответов
- 0 вопросов
5
Вклад в тег
const anchors = document.querySelectorAll('a[href*="#"]')
anchors.forEach((anchor) => {
anchor.addEventListener('click', function (e) {
e.preventDefault()
const blockID = anchor.getAttribute('href').substr(1)
document.getElementById(blockID).scrollIntoView({
behavior: 'smooth',
block: 'start'
})
})
})
npm i
без подчеркивания