In HTML, I have the following radio button choices
o Choice 1
o Choice 2
o Choice 3
What I would like to do is when someone SELECTs a radio button from above, that the text corresponding to that radio button selected becomes bold.
So, for example - if the person selects "Choice 2", the radio button selection would now look like:
o Choice 1
o Choice 2
o Choice 3
How do I do this? I assume either JavaScript or CSS has to be used.
Thanks in advance
UPDATE: How would you implement "nickf" solution without using jQuery?