First, I apologize for my English evil. I am using a translator. I put a ' refresh ' the page to redirect it after 45 seconds. As I do for this page to load only within the iframe? Thanks
<html>
  <head>
    <title>My title</title>
    <meta http-equiv="refresh" content="45;URL=http://otherpage.com.br">
    </head>
  </head>
  <body>
    <div>
        <iframe style="border: medium none ; overflow: hidden; width: 800px; height: 300px;" src="page2.html" frameborder="0" scrolling="no"></iframe>
    </div>
  </body>
</html>
Don't work.. :(
<html>
  <head>
    <title>My title</title>
<script>
setInterval(function(){
var url = 'http://stackoverflow.com/';
document.getElementsByTagName('iframe')[0].src = url;  }, 45000);
</script>
    </head>
  </head>
  <body>
    <div>
        <iframe style="border: medium none ; overflow: hidden; width: 800px; height: 300px;" src="page2.html" frameborder="0" scrolling="no"></iframe>
    </div>
  </body>
</html>
 
     
     
     
     
    
**
– Rayon Jun 28 '15 at 08:27