DEV Community

Cover image for Refresh page using Metatags
Rodrigo Cordeiro
Rodrigo Cordeiro

Posted on

Refresh page using Metatags

Ok, sometimes we need to refresh a page after an amount of time. Maybe to reload some data, to keep it up-to-date or just during the development that you're styling the page and need to see the changes. For that, one of the possibilities is using the meta tag bellow:

 <meta http-equiv="refresh" content="TIME_TO_RELOAD_ON_SECONDS;URL=PAGE_NAME">

That's all folks!

Oldest comments (0)