Could anybody please tell me how to make a html (Preffered)/Javascript script that automatically refreshes one frame??
Automatic Frame Refresh.
place the following script in the frame:
Make this your body tag:
Replace the #### with the time till the page should refresh (in milliseconds) - 1000 is one second
| Code: |
| <script langauge="javascript" type="text/javascript">
<!-- function reloadFrame() { self.location.reload(); } --> </script> |
Make this your body tag:
| Code: |
| <body onload="setTimeout('reloadFrame()',####);"> |
Replace the #### with the time till the page should refresh (in milliseconds) - 1000 is one second
Cool, thanks for that Luke.
(It worked)
Pleased to help!
