Skip to content

Instantly share code, notes, and snippets.

@shankyty
Created November 13, 2014 09:02
Show Gist options
  • Save shankyty/137ca73191c67a718314 to your computer and use it in GitHub Desktop.
Save shankyty/137ca73191c67a718314 to your computer and use it in GitHub Desktop.
function ( el ) {
var x = 0;
var y = 0;
while( el && !isNaN( el.offsetLeft ) && !isNaN( el.offsetTop ) ) {
x += el.offsetLeft - el.scrollLeft;
y += el.offsetTop - el.scrollTop;
el = el.offsetParent;
}
return { top: y, left: x };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment