I have two radio buttons set and i want is if i will select yes on first set it should automatically select other one as yes here's my code
<input type="checkbox" name="saver" value="yes" id="saver"> Yes
<input type="checkbox" name="saver" value="no" id="saver"> No
<input type="checkbox" name="sendmail" value="yes" id="sendmail"> Yes
<input type="checkbox" name="sendmail" value="no" id="sendmail"> No
So i want is if i select yes on the first set it should select the yes on second set automatically , Jquery goes here
$('#saver').keyup(function(){
var checkbox_value = $('#saver:checked').val();
if(checkbox_value == 'yes')
{
$('input[name="sendmail"]').attr('checked', true);
}
});
It do select the other set automatically but it is going to no instead of yes