blob: 0fcdd85b8816229e2a1561d96f70f304da7034bc [file] [log] [blame]
<html>
<body>
<p> Counting up every 50ms </p>
<input id="input" value="0"/>
<script>
window.addEventListener('load', function() {
var inputElement = document.getElementById('input');
window.setInterval(function() {
inputElement.value = inputElement.value * 1 + 1;
}, 50);
});
</script>
</body>
</html>