javascript refresh page every 30 seconds

JavaScript
setTimeout(function() {
  location.reload();
}, 30000);
Source

Also in JavaScript: