/ Published in: jQuery
URL: http://www.vancelucas.com/blog/fixing-ie7-z-index-issues-with-jquery/comment-page-1/
dynamically reverse the default z-index stacking order of the elements on your page
Expand |
Embed | Plain Text
$(function() { var zIndexNumber = 1000; $('div').each(function() { $(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); });
You need to login to post a comment.
