Skip to content

Instantly share code, notes, and snippets.

@blinkcursor
blinkcursor / smoothscrolling.js
Last active April 17, 2019 08:10
Native JavaScript smooth scrolling to internal anchors
var smoothScrolling = {
// add smooth vertical scrolling to internal anchors
init: function() {
// if new native support available we don't need any of this
var isSmoothScrollSupported = 'scrollBehavior' in document.documentElement.style;
if (isSmoothScrollSupported) {
return;
}
this.bindEvents();