JavaScript
1
Вклад в тег
const anchors = document.querySelectorAll('a[href^="#"]')
for(let anchor of anchors) {
anchor.addEventListener("click", function(e) {
e.preventDefault()
const goto = anchor.hasAttribute('href') ? anchor.getAttribute('href') : 'body'
document.querySelector(goto).scrollIntoView({
behavior: "smooth",
block: "start"
})
})
}
$(".mainMenu ul li a").on("click" , ()=>{
$(".mainMenu").removeClass("act")
})