I am making a registration form, and I have three fields to enter values.
I want to make it mandatory to fill in at least one of the three input text.
Does anyone know how to do this with jQuery Validator?
<input type="text" name="produto_preco_p" id="produto_preco_p" class="form-control" value="<?= $produto_preco_p; ?>" placeholder="Preço tamanho P">
<input type="text" name="produto_preco_m" id="produto_preco_m" class="form-control" value="<?= $produto_preco_m; ?>" placeholder="Preço tamanho M">
<input type="text" name="produto_preco_g" id="produto_preco_g" class="form-control" value="<?= $produto_preco_g; ?>" placeholder="Preço tamanho G">