Hi,
I have a question to a problem on which I can't find a solution on the net.
Here's the problem:
I have a page with two forms. The first form asks the user to fill in some stuff (it doesn't matter what in this case).
The second form displays several values of a server (like how many packets are send, on-line time etc.). Now I want those values to be refreshed continually without the upper form (or whole page) to refresh. I might do this with an iframe but first I'm looking for a better solution. Next I'll display a fake example:
<html>
<body>
<form name="form1" id="form1" method="post">
<input type="text" name="username"> fill in your username<br>
<input type="submit" value="submit">
</form>
<form name="form2" id="form2">
<input type="text" name="packets" value=""> <-- This value should be refeshed with javascript!
</form>
</body>
</html>
Thanks in advance,
Miroen



Reply With Quote

Bookmarks