Oct 26, 2006 #1 dlkraft Programmer Dec 5, 2000 47 US The link below does just great at reloading the parent frame. However, I would like the code to be run without the user being required to click the link. Can you help? <A HREF="javascript:window.parent.frames[2].location.reload()">Reload</A>
The link below does just great at reloading the parent frame. However, I would like the code to be run without the user being required to click the link. Can you help? <A HREF="javascript:window.parent.frames[2].location.reload()">Reload</A>
Oct 26, 2006 #2 trollacious Programmer Sep 29, 2004 4,046 US Where ever you want to trigger the reload, use this: Code: <script type"text/javascript"> window.parent.frames[2].location.reload(); </script> Lee Upvote 0 Downvote
Where ever you want to trigger the reload, use this: Code: <script type"text/javascript"> window.parent.frames[2].location.reload(); </script> Lee