I want to know how to use JavaScript to get the distance of an element from the top of the page not the parent element.
Use offsetTop
document.getElementById("foo").offsetTop
Demo