• Resolved moooke

    (@moooke)


    I need this formula :

    Show me this “text 1 ” if I clicked the B button

    Show me this “text 2 ” if I clicked the A button

    Show me this “text 3 ” if I clicked the C button

    HOW ?

    THANK’S

Viewing 1 replies (of 1 total)
  • Plugin Author codepeople

    (@codepeople)

    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.

Viewing 1 replies (of 1 total)

The topic ‘formula’ is closed to new replies.