Skip to content

Instantly share code, notes, and snippets.

@agronom81
Created May 10, 2015 11:38
Show Gist options
  • Save agronom81/503841607193a2eda4ee to your computer and use it in GitHub Desktop.
Save agronom81/503841607193a2eda4ee to your computer and use it in GitHub Desktop.
maximum z-index on the page
var highest_index = 0,
elements = document.getElementsByTagName('*');
for (var i = 0; i < elements.length - 1; i++) {
if (parseInt(elements[i].style.zIndex) > highest_index) {
highest_index = parseInt(elements[i].style.zIndex);
};
};
var zIndex = highest_index + 10;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment