I use form validation (https://formvalidation.io/) to validate my forms.
In my form I have three phone number fields but I want at least one of the three to be filled in. How can I do this?
Looking forward to hearing from you
<div class="col-md-4">
<div class="form-floating form-floating-outline">
<input type="text" class="form-control telephone-fixe-mask" name="telephone_fixe" id="telephone_fixe" />
<label for="telephone_fixe">Téléphone fixe</label>
</div>
</div>
<div class="col-md-4">
<div class="form-floating form-floating-outline">
<input type="text" class="form-control telephone-mobile-mask" name="telephone_mobile" id="telephone_mobile" />
<label for="telephone_mobile">Téléphone mobile</label>
</div>
</div>
<div class="col-md-4">
<div class="form-floating form-floating-outline">
<input type="text" class="form-control telephone-mobile2-mask" name="telephone_mobile2" id="telephone_mobile2" />
<label for="telephone_mobile2">Téléphone mobile 2</label>
</div>
</div>
FormValidation.io might not have the function you want directly. Since you tagged
jQuery, I assume you can use jQuery. The code you gave didn't include<form>, so I assume your form id isyourFormIduse this js code: