• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

JavaScript code for Scroll Down anchor ties not working

Community Beginner ,
May 01, 2018 May 01, 2018

Copy link to clipboard

Copied

Hello!

I have anchor ties that cut to different sections of my webpage. I was given this code in a tutorial so instead of cutting to my anchor ties, the website would scroll down to them. For some reason, it only scrolls down for one of my anchor ties, and the rest of them it still only cuts to them. I would like the Javascript to work so that all my anchor ties will be scrolled to when clicked on. Any help is appreciated! Thank you!

let anchorlinks = document.querySelectorAll('a[href^="#"]')

for (let item of anchorlinks) { // relitere

    item.addEventListener('click', (e)=> {

        let hashval = item.getAttribute('href')

        let target = document.querySelector(hashval)

        target.scrollIntoView({

            behavior: 'smooth',

            block: 'start'

        })

        history.pushState(null, null, hashval)

        e.preventDefault()

    })

}

Views

355

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , May 01, 2018 May 01, 2018

Which tutorial and how old is it?

The demo I posted yesterday contains smooth scrolling from a  bit of jQuery code. 

Bootstrap Parallax Template - https://alt-web.com/

Votes

Translate

Translate
Community Expert ,
May 01, 2018 May 01, 2018

Copy link to clipboard

Copied

LATEST

Which tutorial and how old is it?

The demo I posted yesterday contains smooth scrolling from a  bit of jQuery code. 

Bootstrap Parallax Template - https://alt-web.com/

Nancy O'Shea— Product User, Community Expert & Moderator
Alt-Web Design & Publishing ~ Web : Print : Graphics : Media

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines