I found a problem that I can not solve for a while, I'm working with the framework MaterializeCSS . It has validation with some direct notations in the HTML tag, what I'm not getting is validating is when I have a select
tag.
Follow the code:
<div class="input-field col s1">
<select id="comboBasculante" name="comboBasculante">
<option value="0" disabled selected>Selecione</option>
<option value="1">Basculante</option>
<option value="2">Fixo</option>
<option value="3">Janela</option>
<option value="4">Porta</option>
<option value="4">Stanley</option>
</select>
<label data-error="wrong" data-success="right" for="comboBasculante">Produto</label>
</div>