jQuery Set + Unset Radio Buttons
Share
Simple jQuery code snippets to set and unset input values on radio buttons. Just thought I would share because I was having a few issues with earlier versions of jQuery and setting radio buttons on a form.
//jQuery Set Radio Button
$('input[name="correctAnswer"]').attr('checked', false);
//To unselect the button
$("[name=color]").removeAttr("checked");
//jQuery (1.4+) code to pre-select one button :
var presetValue = "black";
$("[name=color]").filter("[value="+presetValue+"]").attr("checked","checked");