$(function() { var zIndexNumber = 1000; // Put your target element(s) in the selector below! $("div").each(function() { $(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); }); //javascript/4263