Answers for "how to uncheck radio button using jquery"

6

jQuery check a radio button

// jQuery version 1.6 or above use:  
$("#myRadioID").prop("checked", true);
 
//jQuery versions below 1.6 use:
$("#myRadioID").attr('checked', 'checked');
Posted by: Guest on July-25-2019
0

unset radio button jquery by name

$("input:radio[name='thename']").each(function(i) {
       this.checked = false;
});
Posted by: Guest on September-03-2020
0

radio button unchecked html jquery

$(this).prop('checked', false);
// Note that the pre-jQuery 1.6 idiom was
// $(this).attr('checked', false);
Posted by: Guest on April-21-2021

Code answers related to "how to uncheck radio button using jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language