1 2 3 4 5 6 7 8 9 10 11
<html> <head> <title>location.reload()</title> <script> setTimeout('location.reload();', 100); </script> </head> <body> Testing location.reload(); </body> </html>