How to remove input attr from radio button
I have a form with several radio buttons in one fieldset (fieldset's are broke up by a wizard plug in). If you check "Yes" to any of the 5 radio buttons, all the parent li's with the radio buttons are hidden and a li with text appears stating you can't click yes. There is a link in there to go back to the original fieldset that when clicked, makes the li with text disappear and the li's with radio buttons appear. Easy enough to make this happen. When you click the link to go back I would like the radio buttons value reset, currently it is still on Yes.
jquery
<script type="text/javascript">
//Show/Hide professional Status
$(document).ready(function() {
$("#Pro").hide();
$("#SEC_Yes,#Inv_Advisor_Yes,#Sub_Yes,#Bill_Yes,#Data_Yes").click(function() {
if($(this).val()==="Yes")
$(".amateur").hide();
$("#Pro").show("fast");
});
$("#NotPro").click(function() {
$(".amateur").show("fast");
$("#Pro").hide();
// Not working
//$(".amateur").attr("checked",true);
});
});
</script>
posted at http://www.kinetick.com/FOO/purchase
it is step 3 of the form.
Thanks.