UNPKG

scroll-to-anchor

Version:

Scroll to the current anchor in the url if possible

11 lines (9 loc) 215 B
module.exports = scrollToAnchor function scrollToAnchor (anchor, options) { if (anchor) { try { var el = document.querySelector(anchor) if (el) el.scrollIntoView(options) } catch (e) {} } }