Scroll an element into target

NottDev
Mar 19, 2021

--

โค้ดสำหรับการทำ scroll ไปยัง element ที่ต้องการ focus สามารถเขียนโค้ดได้ดังนี้

$(document).ready(function () {
var element = document.querySelector(".menu a.active");
element.scrollIntoView({behavior: "smooth" ,inline: "center"});
});

--

--

NottDev
NottDev

Written by NottDev

Your only limit is your mind.

No responses yet