Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Refresh a page Without <http-equiv="refresh" content="6>

Status
Not open for further replies.

JuanjoZun

Programmer
Jul 20, 2002
82
MX
I want to refresh a page every 5 or 6 seconds but I want to know if there's a way to count the seconds and after 5 secs, refresh or reload my page...

I want to refresh frame1.asp from frame2.asp... so, what can I do in frame2.asp?

Thanks

Juanjo

Follow the dark side, so you can reach the light.
 
<script>
function keepRefreshing(){
parent.frame1.location.reload();
start=setTimeOut(&quot;keepRefreshing()&quot;,5000);
}
</script>

<body onload=&quot;keepRefreshing()&quot;>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top