I want to uncheck a radio button and I have tried almost all below methods but those are not working.
Can someone advise me how to achieve this ?
$('input[type="radio"]').prop('checked', false);
$('input[type="radio"]').removeAttr("checked");
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="savercol text-center" id="regfareId00">
<span class="star icon-round_trip"></span>
<input type="radio" class="" name="foo0" value="0~P~~P0IPRT~3207~~29~X|6E~2135~ ~~BLR~07/28/2018 01:30~DEL~07/28/2018 04:15~">
<label class=""><span>₹ 3,344</span></label>
</div>