I am running into a slight validation issue with the Boolean required
attribute on form fields.
I am marking up my fields as such:
<label for="email">Email Address:</label>
<input value="" type="email" name="email" id="email" required />
But trying to find all required fields using jQuery and adding them to an array seems problematic due to detection issues.
The following only works in Firefox (Gecko) $(':input[required=""]')
but returns nothing in Webkit (Safari, Chrome).
Webkit on the other hand return all required fields if I run $(':input[required]')
or $(':input[required="true"]')
, but when this runs through Gecko it doesn't return the required fields.
What am I doing wrong here? Last I checked the input attribute was simply required
and neither required="required"
nor required="true"
.
Is there a better way of detecting all the required fields using javascript/jQuery?
It may be a bad workaround, but have your tried a multiple selector?
$(':input[required=""],:input[required]')