Home  |  Forums  |  914 Info  |  Blogs
 
914World.com - The fastest growing online 914 community!
 
Porsche, and the Porsche crest are registered trademarks of Dr. Ing. h.c. F. Porsche AG. This site is not affiliated with Porsche in any way.
Its only purpose is to provide an online forum for car enthusiasts. All other trademarks are property of their respective owners.
 

Welcome Guest ( Log In | Register )

> HTML Question...., or Java, or.......
Series9
post May 1 2007, 07:23 PM
Post #1


Lesbians taste like chicken.
*****

Group: Members
Posts: 5,446
Joined: 22-August 04
From: DeLand, FL
Member No.: 2,602
Region Association: South East States



If you've seen my webpage, you've discovered that I don't know much about writing code.

I've been messing with a simple bit of Java script and can't get something to work.


Below is the code that refreshes my webcam image. I would like to have the ability to add a second webcam image next to the first one and I would like for it to refresh too.

I have been able to add the second webcam image. That's no problem, but when I do, neither image refreshes. I've tried a bunch of stuff, but clearly don't understand enough to make it work.

The code:

<HTML>

<HEAD>

</HEAD>

<BODY onLoad = "webcamRefresh()">
<script LANGUAGE="JavaScript">
<!-- hide

var refresh = 15;
var seconds = refresh;

function webcamRefresh()
{
document.form.counter.value = --seconds;
if (seconds <= 0)
{
var now = new Date();
var imageURL = "webcam.jpg" + "?" + now.getTime();
document.webcam.src = imageURL;
seconds = refresh;
}
refreshTimer = setTimeout("webcamRefresh()", 1000);
}

// -->
</SCRIPT>

<IMG NAME="webcam" SRC="webcam.jpg" WIDTH="512" HEIGHT="384">
<BR>
<FORM NAME="form">
<INPUT NAME="counter" TYPE="text" SIZE="2" VALUE BORDER=0> seconds until refresh
</FORM>

</BODY>

</HTML>
User is offlineProfile CardPM
Go to the top of the page
+Quote Post

Posts in this topic


Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 4th July 2025 - 11:52 AM