How to auto refresh iframe, or whole row every 10 mins

Hi, I have a page with some iframes pulling in weather conditions, and would like these to auto refresh at regular intervals like every 10 minutes, at the iframe, or even the whole row. This is the page (under construction).

https://sydneytasmandivers.com/

Thank you :slight_smile:

<script>
  setInterval(function() {
    // Select all iframes
    Array.from(document.querySelectorAll('iframe')).forEach(function(iframe) {
      iframe.src += ''; // setting src will reload the iframe
    });
  }, 1000 * 60 * 10); // interval of 10 minutes
</script>
2 Likes

Thank you very much Patrick.