Tenemos 3 opciones para recargar o redirigir desde html:
Recarga de un iframe insertado en una página html:
1 2 3 4 5 6 7 8 9 10 11 12 | <script> setInterval(function() { // Select all iframes Array.from(document.querySelectorAll('iframe')).forEach(function(iframe) { iframe.src += ''; // setting src will reload the iframe }); }, 1000 * 60 * 1); // interval of 1 minute </script> <iframe> ...contenido del iframe con la URL a recargar cada x tiempo definido en la función javascript. </iframe> |
Event handler de javascript:
1 2 3 4 5 6 7 | <script> function myFunction() { location.replace("https://www.mydomain.com"); } </script> <body onload="setTimeout(myFunction, 3000)"> |
Etiqueta meta dentro de un iframe:
1 2 3 4 5 6 7 8 | <iframe style="overflow:hidden;overflow-x:hidden;overflow-y:hidden;height:100%;width:100%;position:absolute;top:0px;left:0px;right:0px;bottom:0px" height="100%" width="100%" id="inlineFrameExample" title="Inline Frame" src="http://www.mydomain.com"> <meta HTTP-EQUIV="Refresh" CONTENT="3000; URL=http://www.mydomain.com"> </iframe> |