i have this script for delayed iframe and it work but it's executed after my whole web loaded due to (onload)
so what i do to make it run before or during page loading .. ?
this's my code
so what i do to make it run before or during page loading .. ?
this's my code
Code:
<script type="text/javascript">
window.onload = function() {
setTimeout(loadfunction,1000)
}
function loadfunction() {
document.getElementById("myiframe").src = "http://www.google.com/"
}
</script>
Comment