Created
June 25, 2020 14:22
-
-
Save 73nko/25ec114710a2b386d7bc4779461ec2ee to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getHighestZ() { | |
let highestZ = 0; | |
const elements = document.querySelectorAll('*'); | |
elements.forEach(element => { | |
const style = getComputedStyle(element); | |
const zIndex = (style.zIndex) ? parseInt(style.zIndex) : 0; | |
if (zIndex > highestZ) { | |
highestZ = zIndex; | |
} | |
}); | |
return highestZ; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment