How to make the text change every 5 seconds? My code
setInterval(function() { $('.fot-kill-txt:contains("Всего убийств")').text("Всего смертей"); $('.fot-global-txt:contains("5")').text("15"); $('.fot-global-txt-you:contains("3")').text("16"); }, 5000); setInterval(function() { $('.fot-kill-txt:contains("Всего смертей")').text("Всего убийств животных"); $('.fot-global-txt:contains("15")').text("3"); $('.fot-global-txt-you:contains("16")').text("5"); }, 10000); setInterval(function() { $('.fot-kill-txt:contains("Всего убийств животных")').text("Всего убийств"); $('.fot-global-txt:contains("3")').text("9"); $('.fot-global-txt-you:contains("5")').text("2"); }, 12000);
<div class="fot-kill-txt">Всего убийств</div> <div class="fot-global-left-title">Глобальный</div> <div class="fot-global-txt">5 </div> <div class="fot-global-left-title">Вы</div> <div class="fot-global-txt-you">3</div>