Skip to content

Instantly share code, notes, and snippets.

@usmaanalii
Last active September 4, 2017 07:42
Show Gist options
  • Save usmaanalii/81342250983c97e3da7a15b0718ff551 to your computer and use it in GitHub Desktop.
Save usmaanalii/81342250983c97e3da7a15b0718ff551 to your computer and use it in GitHub Desktop.
const navCoords = nav.getBoundingClientRect();
const dropdownCoords = dropdown.getBoundingClientRect();
const coords = {
height: dropdownCoords.height,
width: dropdownCoords.width,
top: dropdownCoords.top - navCoords.top,
left: dropdownCoords.left - navCoords.left
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment