Skip to content

Instantly share code, notes, and snippets.

@Verthon
Created November 17, 2020 08:09
Show Gist options
  • Save Verthon/d7f8f2ab07456d2c406ec1634c93cad5 to your computer and use it in GitHub Desktop.
Save Verthon/d7f8f2ab07456d2c406ec1634c93cad5 to your computer and use it in GitHub Desktop.
Get ALL
let parent = document.querySelector(".your-position-sticky-class").parentElement;
while (parent) {
const hasOverflow = getComputedStyle(parent).overflow;
if (hasOverflow !== "visible") {
console.log(hasOverflow, parent);
parent.style.overflow = "auto";
}
parent = parent.parentElement;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment