[Solved] When click a link, Need to add checked attribute in radio button [closed]

[ad_1]

$('#linkID').click(function(e){
e.preventDefault();
$('.classradiobuttons').prop('checked',true);
})

use class=”classradiobuttons” on all your check boxes that need to be checked for that paticular link similarly give a new id to another link and do the same with other radiobutton with a new class name

[ad_2]

solved When click a link, Need to add checked attribute in radio button [closed]