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