0
Show value of Radio button
How to show the value of submitted radio button on the screen?
3 odpowiedzi
0
In front-end or back-end? answer depends on that ...
0
Front
0
You can use Javascript ...
1. Collect all radio buttons using querySelectorAll() or getElementsByTagName()
2 Use a loop to map click event of each radio button collected in step 1 to a function where you wrote instructions (code) to display the value, wherever you so wish.