|
Posted by PH on 11/24/07 12:50
> Hi
>
> My website has 4 frames, namely: top, left, right (mainFrame), bottom
> The right frame is linked to other website which has content that
> changes frequently.
>
> Is it possible to write a refresh code on the left frame that will
> refresh the content on the right frame every 5 seconds?
>
> The following code does not work,
> <meta http-equiv="refresh" content="3" target="mainFrame">
>
>
> Thanks very much in advance
Maybe this ?
<head>
<script>
setInterval ( "doSomething()", 1000 );
function doSomething ( )
{
// (do something here)
window.right.location = "http://www.somewebsite.com/"
}
</script>
</head>
--
Best Regards
Peter Heinzl
www.123-game.com/guitar
http://www.123-game.com/puzzle/free_panorama1_1.asp
Navigation:
[Reply to this message]
|