Skip to content

Instantly share code, notes, and snippets.

@henideepak
Created July 5, 2022 12:12
Show Gist options
  • Save henideepak/562ee75827ac4e14abc28e9b50a66344 to your computer and use it in GitHub Desktop.
Save henideepak/562ee75827ac4e14abc28e9b50a66344 to your computer and use it in GitHub Desktop.
Auto refresh Page via meta tag
var meta = document.createElement('meta');
meta.httpEquiv = "refresh";
meta.content = "10;"+ window.location.href;
document.getElementsByTagName('head')[0].appendChild(meta);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment