javascript - Jquery TypeWriter Effect variable change -
i'm attempting create jquery typewriter effect scrolls through different sentences each 10 seconds. @ 10 second break style of site changes. problem after first run through sentences turn gibberish variable 'text_number' keeps getting changed , i'm not sure why. any appreciated. var textone = '"hello world"'; var texttwo = '"what happening"'; var textthree = 'good morning'; function text_change(text_number) { if (text_number === 1) { var splittext = textone.split(""); } else if (text_number === 2) { var splittext = texttwo.split(""); } else if (text_number === 3) { var splittext = textthree.split(""); } var n = splittext.length; function text_animation(textpos) { var previousi = textpos - 1; var nextletter = splittext.slice(previousi, textpos); if (nextletter == '*') { $("#quote-div p").append(...