Skip to content
Advertisement

Show text on a radio button selection

I have created a radio button which says “no” and “yes”. By default, nothing is selected.

So what I’m looking to do here is, if someone select no, nothing happens, but if someone select “Yes” It should print a text below saying hello world.

Can someone help?

JavaScript

Advertisement

Answer

You need to set up event listeners for clicks on the radio buttons. When either is clicked, you need to check the value of the checked button. When it’s “yes”, set your message to “hello world”, and blank when it’s “no”:

JavaScript
JavaScript

Here’s a jQuery solution you might prefer:

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement