I lost my opinion on why my form of the radio window does not work in Firefox 7.0.1, but works fine in IE, Chrome and Safari. The problem is that radio boxes that are “checked” do not return to what HTML shows.
For example, if I change the temperature setting from "f" to "c" and press "Select", the script action will see the correct values. Then I press Back in FF and update the window, "c" is still selected. As stated, this works as expected in other browsers, but not in FF.
It's hard for me to believe that something is so basic in FF, but the HTML is straightforward.
- Jeff
<form name="form1" method="POST" action="weather_uom_set.php">
<h3>Precipitation</h3>
<input type="radio" name="precip" value="in" checked="checked"/> Inches (")<br/>
<input type="radio" name="precip" value="mm" /> Millimeters (mm)<br/>
<h3>Temperature</h3>
<input type="radio" name="temp" value="f" checked="checked"/> Fahrenheit (°f)<br/>
<input type="radio" name="temp" value="c" /> Celsius (°c)<br/>
<input type="submit" value="Submit" />
</form>