Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] Frame refresh


  • From: javascript@xxxxxxxxxx (phumes1)
  • Subject: [Javascript] Frame refresh
  • Date: Fri, 21 Jun 2002 11:23:36 -0400

Hi,

My site is plsit into 3 frames.

|    leftframe   |    middleframe    |    rightframe   |


I have a <ahref in the middleframe. When I click on that link a page gets loaded into the rightframe. I then have some JS that closes that page after 10 seconds.

How can I force a "refresh" on the "middleframe" frame automatically? Below is just a stab at it but it doesn't work.

Could someone help?


<script>
	setTimeout("self.close()",10);
//	top.display.location.middle="../index.html";
</script>