You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//create a variable of the setInterval function so we can call it during clearInterval if the i counter hits the end of the text length. Otherwise, this will run infinitely.
var typeText = setInterval(function () {
document.getElementById("typewriter").innerHTML += text.substring(i, i + 1);
i++;
if (i >= textCount) {
clearInterval(typeText);
}
}, 200); //200ms. This can be lowered to type faster.