<input type="radio" name="first" value="1" >
<input type="radio" name="first" value="2" >
<input type="radio" name="second" value="1" >
checked="checked
при выборе <input type="radio" name="first" value="1" >
к <input type="radio" name="second" value="1" >
checked="checked
из <input type="radio" name="second" value="1" >
, если <input type="radio" name="first" value="1" >
не выбран? <input type="radio" name="first" value="1" >
<input type="radio" name="first" value="2" >
<input type="radio" name="second" value="1" >
$(document).ready(function () {
var inputBoxfirst = $("input[type=radio]");
var inputBoxsecond = $("input[name=second]");
inputBoxfirst.click(function(){
if($(this).val()==1) {
inputBoxsecond.prop('checked', true);
}
else{
inputBoxsecond.prop('checked', false);
}
});
});