Window setInterval() Method

setInterval(function(){ alert("GEMCODE"); }, 5000);

Alert “GEMCODE” every 5 seconds (5000 milliseconds):

Share Post