Skip to content

Instantly share code, notes, and snippets.

@remibreton
Last active December 23, 2015 07:09
Show Gist options
  • Save remibreton/6599332 to your computer and use it in GitHub Desktop.
Save remibreton/6599332 to your computer and use it in GitHub Desktop.
function getPosition(element){
for(var lx = 0, ly = 0; element != null; lx += element.offsetLeft, ly += element.offsetTop, element = element.offsetParent);
return {x: lx, y: ly};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment