Answers for "how to automatically refresh time on page js"

1

js timer reload page

//BY JS
setTimeout(function() {
  location.reload();
}, 30000);
//NOTE: YOU COULD DO IT BY HTML5 LIKE THIS:
<meta http-equiv="refresh" content="30"/>
Posted by: Guest on June-11-2020
10

javascript refresh page automatically

<meta http-equiv="refresh" content="30"/>
Posted by: Guest on May-06-2020

Code answers related to "how to automatically refresh time on page js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language