Preserved Topic: location.reload() |
|
---|---|
Author | Thread |
Bipolar (III) Inmate From: Berlin, Germany |
posted 12-29-2001 22:30
<a href="javascript:location.reload()">Reload</a> |
Lunatic (VI) Mad Scientist From: Massachusetts, USA |
posted 12-29-2001 23:49
You merely have to access the location object of *that* window. If it's a sub frame, you just say frame_name.location.reload(). If it's a sibling frame, you say parent.frame_name.location.reload(). If it's harder to get to, you can navigate to it from the top-level of the window: top.some_top_level_frame.one_of_its_child_frames.frame_name.location.reload(). If it's in an entirely different window altogether, you use window_name.location.reload(). |
Bipolar (III) Inmate From: Berlin, Germany |
posted 12-31-2001 11:13
Thanks, that helped. |