/ Published in: CSS
Fix z-index in IE7 using JQuery snippet
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.
