setInterval(function(){ var currentColor = ''; jQuery('div#box').find('>span').each(function(){ if (currentColor != jQuery(this).css('background-color')) jQuery(this).click(); currentColor = jQuery(this).css('background-color'); }); },10);