When required is defined in a form field, Firefox 4 automatically shows a red border to this element, even BEFORE the user hit the submit button.
<input type="text" name="example" value="This is an example" required />
I think this is disturbing from the user since he/she didn't made any mistake at the beginning.
I'm looking to hide that red border in the initial state, but show it when the user hit the send button if there is a missing field marked as required.
I looked at :required and :invalid from new pseudo selector, but the changes are for before AND after the validation. (from Firefox 4 Required input form RED border/outline)
Is there a way to disable the red border before the user submit the form, and show it if there is some missing fields ?