js get position of element relative to window code example
Example 1: javascript get element position relative to document
element.getBoundingClientRect().top + document.documentElement.scrollTop
Example 2: js window location relative path
//To get just the relative path of a window location.
const RELATIVE_PATH = window.location.pathname;