Posts by Lucas Silveira • 9 points
1 post
-
0
votes2
answers427
viewsA: How to give a disabled in a form depending on which radio button to choose?
You can do the following method which checks which radio is checked and disables the corresponding form: <script> function alterarDisable() { var radios = document.getElementsByName("radio1");…