IE7 z-index JQuery Fix


/ Published in: CSS
Save to your folder(s)

Fix z-index in IE7 using JQuery snippet


Copy this code and paste it in your HTML
  1. $(function() {
  2. var zIndexNumber = 1000;
  3. $('div').each(function() {
  4. $(this).css('zIndex', zIndexNumber);
  5. zIndexNumber -= 10;
  6. });
  7. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.