/ Published in: CSS
Fix z-index in IE7 using JQuery snippet
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$(function() { var zIndexNumber = 1000; $('div').each(function() { $(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); });