Jan 10
Ever had problems in IE7 with z-index css attribute?
Problem:
The Menu created with superfish plugin for jquery will be shown behind the main content on mouseover.
Solution:
With Jquery dynamically reverse the CSS zindex stacking order of the page element so that higher elements in HTML source have highter z-index number
1 2 3 4 5 6 7 | $(function() { var zIndexNumber = 1000; $('div').each(function() { $(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); }); |
Check this link for more information: http://www.vancelucas.com/blog/fixing-ie7-z-index-issues-with-jquery/
