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
<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>
Thank you very much Patrick.