While developing I use FireFox as my main browser. Mostly during the end of the project IE bugfixing is scheduled.
Today I was having difficulties (again) with z-indexes in IE7. Solution? Very easy using jQuery…
Just have this in your script and it will be okay:
$(function() { var zIndexNumber = 1000; $('div').each(function() { $(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); });
Wanna know more? Read the article that brought me my solution!
Basecamp
Get me at Technoratie
Typo3











