![wordpress](https://habrastorage.org/r/w120/webt/5a/e6/87/5ae687d046207979435072.png)
WordPress
8
Вклад в тег
const anchors = document.querySelectorAll('a[href*="#"]')
for (let anchor of anchors) {
anchor.addEventListener('click', function (e) {
e.preventDefault()
const blockID = anchor.getAttribute('href').substr(1)
document.getElementById(blockID).scrollIntoView({
behavior: 'smooth',
block: 'start'
})
})
}