Is there a code?: current drop-down box hides when an answer is selected & the appropriate box, pertaining to the user's selection appears

Hi all,
Once a drop-down choice is selected, I need a new element to replace the dropdown with an appropriate user input element.

Ex: If yes is selected, then the dropdown box will be hidden & a new user input (what is the site’s name) will appear, and if no is selected, then a separate user input (do you need one) will appear.

I don’t want a page shift, just a code that will allow the current drop-down box to hide when an answer is selected & show the appropriate box, pertaining to the user’s selection.

Thanks! :slight_smile:

You can place the series of components one on top of the other. Hide all of the components except the currently active component which should have show() . Once that action is completed, you can hide() that component, and then show() the next one to be completed.

Have fun,

Yisrael