Ad Code

Refreshing a page after certain delay in jquery

You don't even need jQuery or HTML5 for this:

setTimeout(location.reload.bind(location), 60000);
 This will wait 1 minute (60,000 milliseconds), then call the location.reload function, which is a built-in function to refresh the page.

Post a Comment

0 Comments