👋 Hello! I'm Alphonsio the robot. Ask me a question, I'll try to answer.
How to uncheck a radio button in jQuery?
In jQuery, you can check or uncheck a checkbox element or a radio button using the .prop()
method to set the checked
property as on the following example:
$( "#id" ).prop( "checked", true );
$( "#id" ).prop( "checked", false );