👋 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:


// Check 
$( "#id" ).prop( "checked", true );

// Uncheck
$( "#id" ).prop( "checked", false );

More