Skip to content

Instantly share code, notes, and snippets.

@rdpanek
Created April 22, 2020 12:37
Show Gist options
  • Save rdpanek/74e88c1ed5d88c55f42510044e22f5d4 to your computer and use it in GitHub Desktop.
Save rdpanek/74e88c1ed5d88c55f42510044e22f5d4 to your computer and use it in GitHub Desktop.
zIndex detection
$.map($('body *'), function(e,n) {
let zindex = $(e).css('z-index')
if (zindex > 0) {
console.log(zindex)
console.log(e)
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment