/ Published in: jQuery
Expand |
Embed | Plain Text
jQuery(function() { var zIndexNumber = 1000; jQuery('div').each(function() { jQuery(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); });
You need to login to post a comment.
themolitor on 06/17/10
2 people have marked this snippet as a favorite
jQuery(function() { var zIndexNumber = 1000; jQuery('div').each(function() { jQuery(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); });
You need to login to post a comment.