Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Netscape and <fieldset>

Status
Not open for further replies.

cdev

Programmer
Nov 13, 2005
2
IN
I have a page with <select> elements in a fieldset. When I tab to it and attempt to change values in Netscape 6 or 7, the change does not appear until I move on to another element. Is there any way of fixing this issue?

If you don't know what I mean, try this code:

<html>
<form>
<fieldset><legend>My Listboxes</legend>
<select>
<option value=&quot;One&quot;>One
<option value=&quot;Two&quot;>Two
<option value=&quot;Three&quot;>Three
</select>
<select>
<option value=&quot;One&quot;>One
<option value=&quot;Two&quot;>Two
<option value=&quot;Three&quot;>Three
</select>
</fieldset>
</form>
</html>
 
try naming the select elements
<select name=field1>
</select>

<select name = field2>
</select>

Bastien

There are many ways to skin this cat,
but it still tastes like chicken
 
Huh?

Naming the elements doesn't seem to change the behavior. In my actual page all the elements have unique names.

Seems to be specifically related to putting the select element in a fieldset.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top