When on Click radio button refresh the page without reloading using jquery or javascript

<div><label class="STAA0-radio-btn mr-3">
<input type="radio"  id="new" name="Condition" value="1" onchange="conditionType(this.value)" >
<span>New Material</span
</label>
<label class="STAA0-radio-btn mr-3">
<input type="radio" id="used"name="Condition"value="2"onchange="conditionType(this.value)"
checked>
<span>Used Material</span'
</label>
</div>

on selecting(check) radio button. the page should refresh without reloading and select radio button should checked using Javascript or jquery .new solution ?