I have a form with the following structure:
<input type="text" required="" />
<select required="required">
<option disabled="disabled" selected="selected">Selecciona un ID...</option>
</select>
<input type="text" required="" />
<input type="submit" />
As you can see, I suppose you already know my problem, in the same way I explain it to you ... I must select an ID and write text, in case one of these fields are empty, the message corresponding to the type jumps out, this is done in the input type="text" this does well except in the select this is because having the selected="selected" the field is no longer empty, my question is if there is a way to verify that you select a different option to the one selected by default and in case you do not select any show the message equal to the other inputs?