initial commit
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user