skip to Main Content

Jquery – Enable submit button if 2 selects are populated

I have a form with among others this 2 selects : <div class="form-group"> <select name="yul_log_christmas_serving_id" id="yul_log_christmas_serving_id" class="form-control"> <option value="">{{ __('# Personnes | Taille') }}</option> @foreach($yul_log_christmas_servings as $serving) <option style="color:#6c757d" value="{{ $serving->id }}" {{ $party_loaf_serving_id == $serving->id ? 'selected' : ''…

VIEW QUESTION

Jquery – Call a function on Keydown

On document ready, this function performNext calls fine: $(document).ready(function() { performNext(); }); performNext function hides a current fieldset and shows a next one, my question here is an extension of another question with minimal reproducible example I asked here But…

VIEW QUESTION
Back To Top
Search