jQuery(function ($) { $('#list > li').each(function (i, el) { setTimeout(function () { el.style.color = 'green'; }, i * 1000); }); });