ladybird/Base/res/html/misc/set-interval.html

24 lines
604 B
HTML
Raw Normal View History

2020-05-21 09:44:02 -03:00
<!DOCTYPE html>
<html>
<head>
<title>setInterval() test</title>
<script>
document.addEventListener("DOMContentLoaded", function () {
var output = document.getElementById("output");
var counter = 0;
function updateOutput () {
output.innerHTML = `setInterval() was called ${counter} times!`;
}
updateOutput();
setInterval(function () {
counter++;
updateOutput();
}, 1000);
});
</script>
</head>
<body>
<div id="output"></div>
</body>
</html>