Skip to content

Instantly share code, notes, and snippets.

@viller239
Last active May 4, 2016 17:53
Show Gist options
  • Save viller239/0d211b3a98bd2a1236b3f06a32106773 to your computer and use it in GitHub Desktop.
Save viller239/0d211b3a98bd2a1236b3f06a32106773 to your computer and use it in GitHub Desktop.
<html>
<head></head>
<body>
<script>
var i = 1;
setInterval(function () {
var e = document.createElement('div');
e.innerText = '** ' + i + ' **';
document.body.appendChild(e);
i += 1;
}, 1100);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment