Himas Rafeek
Posted on: 2 years ago
CSS

IE7 z-index JQuery Fix

Fix z-index in IE7 using JQuery snippet


                                          $(function() {
    var zIndexNumber = 1000;
    $('div').each(function() {
        $(this).css('zIndex', zIndexNumber);
        zIndexNumber -= 10;
    }
    );
}
);