How to refresh meta tag?

In HTML and XHTML, one can use the meta element with the value of the http-equiv attribute set to "Refresh" and the value of the content attribute set to "0" (meaning zero seconds), followed by the URI that the browser should request.
 
The meta refresh tag, or meta redirect, is one way that you can reload or redirect web pages. One of the things you can do with the meta refresh tag is to force a reload of the page that someone is already one. To do this, you would place the following meta tag within the <head> of your HTML document. When used to refresh the current page, the syntax looks like this:<meta http-equiv="refresh" content="60">
 
Back
Top