Skip to content

Instantly share code, notes, and snippets.

@Oluwa-nifemi
Created February 9, 2020 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Oluwa-nifemi/259c7e5745efb1b4819978ba2a8ba63b to your computer and use it in GitHub Desktop.
Save Oluwa-nifemi/259c7e5745efb1b4819978ba2a8ba63b to your computer and use it in GitHub Desktop.
Recursive function to find an element's distance from the top of the page
const getDistanceFromTop = (element,current = 0) => element.parentElement ? getDistanceFromTop(element.parentElement,element.offsetTop + current) : current;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment