0
I would like to modify a tag that is within iframe on my page.
I think it will be clearer with the script below:
The "streamurl" tag is inside the iframe code.
<iframe id="player_externo" src="https://openload.co/embed/zFec7SV5aFU" width="605" height="400" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" allowfullscreen="true"></iframe>
<script type="text/javascript">
tempo = 5;
tempo = tempo*1000;
setTimeout(function(){
var download = document.getElementById('streamurl').innerHTML;
document.getElementById('player_externo').src = "https://openload.co/stream/" +download;
alert(download);
}, tempo);
</script>
It’s the same domain?
– Diego Souza
No, I’m using this code on a blogger page.
– Diego Queiroz