14 lines
235 B
HTML
14 lines
235 B
HTML
<html>
|
|
<head>
|
|
<title>window.location</title>
|
|
<script>
|
|
setTimeout(function() {
|
|
// eslint-disable-next-line no-self-assign
|
|
window.location = window.location;
|
|
}, 1000);
|
|
</script>
|
|
</head>
|
|
<body>
|
|
Testing window.location
|
|
</body>
|
|
</html>
|