set radio button optionto input jquery code example
Example 1: set radio button checked jquery
$(".nameOfTheClass").prop('checked', true);
Example 2: jquery set radio button value
$('#' + newcol).prop('checked',true);
$(".nameOfTheClass").prop('checked', true);
$('#' + newcol).prop('checked',true);