WIX elements appear on selection

Hi all.
I need someones help please.
This is a picture of my current form;


Under the “SELECT YOUR RESOURCES” I have the following options;


Essentially what I am having trouble with is getting the #radiogroup1 and #radiogroup2 with text headings (#text23 and #text24) to only appear when “ORDER INDIVIDUAL TASKS” is selected and disappear when the other two selections are made.

I would like the #radiogroup to also be hidden on page load.

Any help is appreciated.

Thanks

Hi,

1- For the element to be hidden on load, you can click on the element and then you can see the properties box with check box of - Hidden on load - .

2- Dealing with dropdown selection, you can use the onChange function to set what to show/hide on each selection. For more information, Check This


Hope this helps!
Best,

Mustafa

Hi thanks for helping with that.
Ive tried this but wondering if im even on the right track? Cheers

export function change (event) {($w(“#dropdown1”).value === ‘Order Individual Tasks’) (“#radioGroup1”).show}