<body>
<div id="container">
<div id="background"></div>
<div id="dialog">
<p>Hello there!</p>
</div>
<div id="button" onclick="showDialog()">
<img src="images/images/sceond3.jpg" width="126" height="210" alt=""/>
</div>
</div>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script>
var counter = 0;
function showDialog() {
if (counter == 0) {
$("#dialog p").html("Testing Second Line!");
}
if (counter == 1) {
$("#dialog p").html("Testing Third Line!");
}
if (counter == 2) {
window.location.href = 'third.html';
}
//increase counter by 1
counter++;
}
</script>
</html>
Above is my code, is there a way to make the text in the dialog div appear in a typing effect? I've searched around and most tutorials are based on a single line and because I had multiple lines, I'm not sure how to do it. Any help would be appreciated. Thanks!