This is the code for the form..
<form>
<select
onChange="if(this.selectedIndex!=0)
self.location=this.options[this.selectedIndex].value">
<script language="javascript" src="../tech/drop7.js"></script></form>
This is the "drop7.js"
document.write('<option value="" selected>Select a Region<option value="national.html">National<option value="franklinh.html">Franklin<option value="ham1.html">Hamilton<option value="northh.html">NorthHarbour<option value="otara.html">Otara<option value="papat.html">Papatoetoe<option value="tga_h.html">Tauranga</select>');
When I test through
Doctor html I get ..
"select tag needs a closing tag"
and...
"Form does not have an action defined"
The form seems to work well on all browsers so far.
If I was to add the </select> where would it go?
What would the "action" be?
Thanks in advance
Tonz