In this case, it is used to refresh a particular web page every 10 seconds. Modify the part between the tag body as needed.
<html> <head> <script type="text/JavaScript"> <!-- function timedRefresh(timeoutPeriod) { setTimeout("location.reload(true);",timeoutPeriod); } // --> </script> </head> <body onload="JavaScript:timedRefresh(10000);"> <iframe src="web_page" width="page_width" height="page_height"></iframe> </html>
web_page = The URL address of the page
page_width = Page width
page_height = Page Height
0 comments:
Post a Comment