The script work great but the button stay disabled if a value is enter with javascript.im forced to write on the field myself , there is a way to check , refresh if a value is here ?
 $(document).ready(function () {
     validate();
     $('#stylish, #name_1, #specialImg1, #specialImg2,#specialImg2').change(validate);
 });
 function validate() {
     if ($('#stylish').val().length > 0 &&
         $('#name_1').val().length > 0 &&
         $('#specialImg1').val().length > 0 &&
         $('#specialImg2').val().length > 0 &&
         $('#specialImg3').val().length > 0) {
         $(".elbutton").prop("disabled", false);
     } else {
         $(".elbutton").prop("disabled", true);
     }
 }
 
     
     
     
    