Refresh web page

omg its nlm

lvl 17 Hax
Joined
10 Jan 2004
Messages
1,829
Anyone out there know the code to auto refresh a webpage every 20secs.

Thanks
 
i am using this to stream my web cam, is there just a way to refresh the pic and not the entire page?

I figure out how to refresh the page
 
It's doable, but it'll **** up any compliancy you have 😉

Head
Code:
<script type="text/javascript">
function refresh_image() {
    document.imgWebCam.src = "images/webcam.jpg"
    setTimeout("refresh_image()",15000);
}
</script>

Body
Code:
<body onLoad="refresh_image();">

Anywhere
Code:
<img src="images/webcam.jpg" alt="Cam" />
 

Members online

No members online now.

Forum statistics

Threads
62,021
Messages
673,242
Members
5,641
Latest member
cpomd
Back
Top