Answers for "how to select all radio button clicking on one"

0

uncheck all radio buttons

$('.classname').prop('checked', false);
Posted by: Guest on May-24-2021
-1

selecting only one radio button

<!-- Just give all the radio buttons the same name. 
Html will then allow you to select only one. -->

<input type="radio" name="radAnswer" />
Posted by: Guest on May-31-2021

Code answers related to "how to select all radio button clicking on one"

Code answers related to "Javascript"

Browse Popular Code Answers by Language