Dynamically change text

Hi Plumsail,

Would it be possible to change a string of text in a multiple choice field based on a selection that is made from a drop-down field?

Can I change the text below dynamically?

Hello @DryChips,

You can change the option label text using the jQuery code:

var mcLabel = $(fd.field('FieldName').$el).find('label')[0];
$(mcLabel).text('New Label')