In a form, how to have a hidden field and show it only after a minimum of 4 fieds of 6 were filled

Hi @francovg,

That first code was made for inputs, here is some code that counts how many select fields have a value of 1 (note, you will need to double click on the 00:00 value for each select in the Select field settings, and change the value from to “1” and use the value “1” for all default choices that have a label of “00:00”.

Here is some new code you might try:

<script>
$("select").blur(function(){

 var count = 0;
   $('select').each(function(){
          if($(this).val() != "1"){
       count ++; 
     }
  })
    
    if(count == 4) {
      $( "#hidden" ).click();
    }
});
</script>

Replace the original code with that code and republish.

I hope this helps.