Skip to content

Instantly share code, notes, and snippets.

View dhanyn10singapay's full-sized avatar

dhanyn10singapay

View GitHub Profile
@prashantsani
prashantsani / VanillaJS_ScrollTo
Last active May 16, 2025 09:34
Native Alternate(Vanilla JS) to jQuery's ScrollTo Plugins
const supportsNativeSmoothScroll = 'scrollBehavior' in document.documentElement.style;
function scrollToView(elem) {
if(supportsNativeSmoothScroll){
// https://caniuse.com/#feat=mdn-api_window_scrollto
// As of publish date of this gist,
// this is only supported in 52% browsers,
// So, the next section (`else{`) is a fallback
window.scrollTo({
behavior: 'smooth',