Files
AnaLogger/test/refresh.html
T
Marco Locatelli ce2e4c523e initial commit
2021-03-09 15:22:10 +01:00

20 lines
523 B
HTML

<!DOCTYPE html>
<head>
<script langauge="javascript">
var counter = 0;
window.setInterval("refreshDiv()", 5000);
function refreshDiv(){
counter = counter + 1;
document.getElementById("test").innerHTML = "Testing " + counter;
}
</script>
</head>
<body>
<div id="test">
Testing
</div>
<div id="staticBlock">
This is a static block
</div>
</body>
</html>