my JS code
and my HTML code is
my iFRame.onload function not working. please help!
Code:
<script type="text/javascript">
function set(){
frames['hf'].onload = function(){
alert('yahooo!!!');
}
window.setInterval(function(){
frames['hf'].location.href = 'undefined_page.html';
}, 5000);
}
</script>
Code:
<body onload="set()"> <iframe name=hf ></iframe> </body>
Comment