Jump to Content

Welcome to the beta of the new saila.com. Send in your bugs.

How do I force a page to reload?

The easiest way to do this is by putting a <meta> inside the >head< tags. This example would reload the page in about 60 seconds:
<meta http-equiv="refresh" content="60" />

This can also be accomplished in JavaScript:
setTimeout("location.href = this.href", 60*1000)

Category: Web Design

Topics: HTML, JavaScript


Jump to navigation