automatically page refresh javascript at particular time code example
Example 1: javascript reload page one time
window.onload = function() {
if(!window.location.hash) {
window.location = window.location + '#loaded';
window.location.reload();
}
}
Example 2: javascript refresh page automatically
<meta http-equiv="refresh" content="30"/>