How can I remove checked input radio if a div has the click effect?
<!DOCTYPE html>
<html>
<body>
<form action="">
<input type="radio" name="gender" value="male"> Male<br>
<input type="radio" name="gender" value="female"> Female<br>
<input type="radio" name="gender" value="other"> Other
</form>
<div id="remover">
<p>Remover checked de radio selecinado</p>
</div>
</body>
</html>
When the div with "remove" id has a click remove input checked effect.