# html

**URL:** https://boards.straightdope.com/t/html/56387
**Category:** Factual Questions
**Created:** [March 1, 2001, 3:17pm UTC](https://boards.straightdope.com/t/html/56387 "2001-03-01T15:17:29Z")
**Posts on this page:** 7
**Page:** 1

<div class="post-metadata">

### Author: ![howardsims](https://avatars.discourse-cdn.com/v4/letter/h/e8c25b/32.png) [@howardsims](https://boards.straightdope.com/u/howardsims)
#### Post date: [March 1, 2001, 3:17pm UTC](https://boards.straightdope.com/t/html/56387/1 "2001-03-01T15:17:29Z")

</div>

I hope this is not a mis-use of this message board…  
(A) Does anyone know of a good place to ask HTML questions?  
(B) Is there a way to have a web page automatically run it’s action every few seconds. I need to have it re-submit so I can constantly update the status it displays to teh user.

---

<div class="post-metadata">

### Author: ![erislover](https://avatars.discourse-cdn.com/v4/letter/e/71e660/32.png) [@erislover](https://boards.straightdope.com/u/erislover)
#### Post date: [March 1, 2001, 3:23pm UTC](https://boards.straightdope.com/t/html/56387/2 "2001-03-01T15:23:38Z")

</div>

1. Books. 😃
2. META HTTP-EQUIV=“refresh” CONTENT=“30”
3. Hi Opal!  
The number in content is equal to the time in seconds.

---

<div class="post-metadata">

### Author: ![erislover](https://avatars.discourse-cdn.com/v4/letter/e/71e660/32.png) [@erislover](https://boards.straightdope.com/u/erislover)
#### Post date: [March 1, 2001, 3:25pm UTC](https://boards.straightdope.com/t/html/56387/3 "2001-03-01T15:25:56Z")

</div>

Rereading your question…no, you can’t use html to re-submit information from a form. Looking for a chat room?

Javascript should work fine, though I couldn’t tell you much about the actual code to use.

---

<div class="post-metadata">

### Author: ![AWB](https://avatars.discourse-cdn.com/v4/letter/a/bb73d2/32.png) [@AWB](https://boards.straightdope.com/u/AWB)
#### Post date: [March 1, 2001, 3:37pm UTC](https://boards.straightdope.com/t/html/56387/4 "2001-03-01T15:37:07Z")

</div>

Try [http://www.wdvl.com](http://www.wdvl.com) , and click on the HTML link on the right side. It can take you either through tutorials, or to a tag list where you can get details.

On personal pages I have at home, I have the HTML needed to reload a page after a given number of seconds. I found it on the above site, so look there. If you haven’t found it by the time I’m home, I’ll look it up there.

---

<div class="post-metadata">

### Author: ![Starbury](https://avatars.discourse-cdn.com/v4/letter/s/f04885/32.png) [@Starbury](https://boards.straightdope.com/u/Starbury)
#### Post date: [March 1, 2001, 3:43pm UTC](https://boards.straightdope.com/t/html/56387/5 "2001-03-01T15:43:48Z")

</div>

If you have everything that needs to be submitted within the form (and assuming the form is named frmHTML, then you could set up a javascript function like this (you should probably put it at the end of the body):

> [@](#):
>
> \*\*  
> \<SCRIPT TYPE=“text/javascript”\>  
> \<!–  
> setTimeout(“functionSubmit();”,30000);
> 
> function functionSubmit(){
> 
> ```
> frmHTML.submit();
> 
> ```
> 
> }
> 
> // --\>  
> \</SCRIPT\>  
> \*\*

This will submit the page after 30 seconds, after which the page will reload, and then be submitted again. You would have to set up seperate code to keep any data on the page after it is refreshed. (This would be pretty easy to do with ASP code)  
As for places to look for answers to HTML questions, one place you could go to is [WebReference](http://www.webreference.com/).

But I also find that just typing my question into [Google](http://www.google.com) helps me the most.

---

<div class="post-metadata">

### Author: ![handy](https://avatars.discourse-cdn.com/v4/letter/h/b5a626/32.png) [@handy](https://boards.straightdope.com/u/handy)
#### Post date: [March 1, 2001, 4:34pm UTC](https://boards.straightdope.com/t/html/56387/6 "2001-03-01T16:34:54Z")

</div>

ah, easy, you can ask here on the board or, hey, how about this one?"

> **[Home](https://html.com/)**
>
> Learn how to code HTML & CSS for free at HTML.com. We've HTML tutorials & reference guides on tags, attributes and everything else you need to master HTML.

---

<div class="post-metadata">

### Author: ![howardsims](https://avatars.discourse-cdn.com/v4/letter/h/e8c25b/32.png) [@howardsims](https://boards.straightdope.com/u/howardsims)
#### Post date: [March 1, 2001, 5:12pm UTC](https://boards.straightdope.com/t/html/56387/7 "2001-03-01T17:12:27Z")

</div>

Starbury… You are The Man!!! The Bomb!  
Thanks
