Skip to content

Instantly share code, notes, and snippets.

@todoubled
Created July 6, 2010 20:52
Show Gist options
  • Save todoubled/465895 to your computer and use it in GitHub Desktop.
Save todoubled/465895 to your computer and use it in GitHub Desktop.
IE: Fix 6 & 7 z-indexing
$(function() {
var zIndexNumber = 1000;
$('div').each(function() {
$(this).css('zIndex', zIndexNumber);
zIndexNumber -= 10;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment