Skip to content

Instantly share code, notes, and snippets.

@FlameWolf
Last active July 10, 2026 04:12
Show Gist options
  • Select an option

  • Save FlameWolf/c743b1f24c6f3c58cf21caa16aae3604 to your computer and use it in GitHub Desktop.

Select an option

Save FlameWolf/c743b1f24c6f3c58cf21caa16aae3604 to your computer and use it in GitHub Desktop.
Find the largest z-index in the document
const getMaxZIndex = () => Array.from(document.querySelectorAll("body *")).reduce((max, elem) => Math.max(max, parseInt(getComputedStyle(elem).zIndex) || 0), 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment