blob: 54eefab1c3f7bf938bfa7096bf5b7dc85e261eb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<html>
<head>
<title>location.reload()</title>
<script>
setTimeout(function() {
location.reload();
}, 100);
</script>
</head>
<body>
Testing location.reload();
</body>
</html>
|