My object was to refresh a particular page continoulsy.
For that I made an html page with two frames.
Second frame has been set to open the desired page say
www.yahoo.com.
On first frame, I have set it to refresh itself after 10 seconds through meta tag.
And on the same frame I have written
JS code
Code:
<script language="JavaScript">
parent.SecondFrame.reload();
</script>
I believe this should have done my work. But this doesn't. The script simply doesn't work at all.