Skip to content

Instantly share code, notes, and snippets.

@romoo
Created May 22, 2012 06:47
Show Gist options
  • Save romoo/2767153 to your computer and use it in GitHub Desktop.
Save romoo/2767153 to your computer and use it in GitHub Desktop.
JavaScript: Fixing IE z-index
/*
Source:http://css-tricks.com/snippets/jquery/fixing-ie-z-index/
*/
$(function() {
var zIndexNumber = 1000;
// Put your target element(s) in the selector below!
$("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