Below is a sample code demonstrating how to refresh the page automatically every 5 seconds using JavaScript.
How to Auto Refresh page every 5 seconds using JavaScript?
<body onload="javascript:setTimeout("location.reload(true);",5000);">
Below is a sample code demonstrating how to refresh the page automatically every 5 seconds using JavaScript.
<body onload="javascript:setTimeout("location.reload(true);",5000);">
Leave a Reply