Change Selected Ratio Button
I have the following html:
<input type="radio" name="refrigerator" value="1" />Yes
<input type="radio" name="refrigerator" value="0" checked="checked" />No
For the life of me, can't figure out how to change the selected/checked ratio group? I have tried:
//Select `Yes` Ratio Option
$("input[@name='refrigerator']").val(1);
With no luck, still `No` was selected. Ideas?