How can i refresh a page with a wait of 100 seconds in javascript.
i used
location.reload();
but i need to wait for 100 seconds before reloading
How can i refresh a page with a wait of 100 seconds in javascript.
i used
location.reload();
but i need to wait for 100 seconds before reloading
To reload a page, you don't want to use second argument
<meta http-equiv="refresh" content="100" />
Reload a page every 100 seconds