I've always provided a value="something"
for my option
elements within a select
element.
Like so
<select>
<option value="true">True</option>
</select>
Now that I have made one with countries, there is a lot of extraneous data in there. I'm pretty sure if I remember correctly, that Firefox will send the text between the tags if a value attribute is not present.
My question is, is this behaviour the norm? Can I rely on all browsers sending the innerHTML of the option element if the value attribute is omitted?
Thanks