Skip to content

Instantly share code, notes, and snippets.

@amit08255
Created April 19, 2022 10:53
Show Gist options
  • Save amit08255/2b6cda772ebcdc7128592294cb94a478 to your computer and use it in GitHub Desktop.
Save amit08255/2b6cda772ebcdc7128592294cb94a478 to your computer and use it in GitHub Desktop.
JavaScript Element Scroll and Height Cheats

Get height and width of element

const elmnt = document.getElementById("myDIV");
console.log("height: ", elmnt.offsetHeight);
console.log("width: ", elmnt.offsetWidth);

Get element scroll position

const elmnt = document.getElementById("myDIV");
console.log("scrolled from top: ", elmnt.scrollTop);
console.log("scrolled from left: ", elmnt.scrolLeft);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment