Hello @moooke
There are multiple alternatives. One of them would be to insert three “Instruct. Text” fields with the corresponding texts.
Assign the class names field-a hide to the first “Instruct. Text” field, the class names field-b hide to the second “Instruct. Text” field, and the class names field-c hide to the third “Instruct. Text” field.
The class names are assigned to the fields through their attributes: “Add CSS Layout Keywords”.
Now the onclick events of the buttons fields would be:
jQuery('.field-a').removeClass('hide');
jQuery('.field-b').removeClass('hide');
and
jQuery('.field-c').removeClass('hide');
Respectively.
Best regards.