Skip to content

Instantly share code, notes, and snippets.

@preddy5
Created June 10, 2013 05:28
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 preddy5/5746728 to your computer and use it in GitHub Desktop.
Save preddy5/5746728 to your computer and use it in GitHub Desktop.
find postion of a html element using javascript
function getOffset( 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