I have used this to autopopulate based on ONE checkbox option and it works well. <script> jQuery(document).ready(function ($) { $(‘.iphorm_1_47’).click(function () { if ($(this).is(‘:checked’)) { $(‘.iphorm_1_21’).val($(‘.iphorm_1_10’).val()); $(‘.iphorm_1_22’).val($(‘.iphorm_1_11’).val()); $(‘.iphorm_1_23’).val($(‘.iphorm_1_11’).val()); } else { $(‘.iphorm_1_21, .iphorm_1_22, .iphorm_1_23’).val(”); } }); }); </script>
I need fields to autopopulate based on a specific dropdown option selection. How should this code be modified? Thank you for your fast response!