Hi, I am dynamically populating a text field with a value from a drop down. I was hoping that the value would initiate some conditional logic to show/hide form fields, however it doesn't seem as though the conditional logic registers when that field has a value written to it.
To write the value I am using:
jQuery("#input_4_64").val(selectedValue);
This inserts the value into that field and it writes correctly but it doesn't fire the logic unless I manually input the "condition".
Is there a way around this? or to make the conditional logic to "see" when that value changes/gets written?