Using jQuery on a dropdown to show/hide text input fields according with the dropdown selection causes a weird behavior in Firefox, not allowing to submit the form until ALL "required" fields are filled, even if these required fields are hidden based on the selection from the dropdown, or so to say, they are in fact inactive.
Safari, just ignores the non visible "required" fields and only checks for the active (visible) required fields, and if these are filled, the form is good to be submitted.
I've tried to search around for any occurrences and possible solutions for this but seem to find none.
Example:
<select id="theselect" name="something">
<option value="1" selected>One</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
<input type="text" name="one" required="required" class="show" />
<input type="text" name="two" required="" class="hide" />
<input type="text" name="three" required="required" class="hide" />
On the above example, having in mind that inputs two and three are hidden, but required if the the select changes to 2 or 3, which will change the state/visibility of the respective input, Firefox forces all the required to be filled.
Has anyone experienced this and / or has some idea of how to manage this effectively with jQuery? Thanks in advance for any thoughts and help on this.
prop()method to togglerequiredat same time you toggle the display – charlietfl Nov 19 '12 at 2:48