Why am I struggling with this?
I have a value: 5
How do I check the radio button of group \"mygroup\" with the value of 5?
$(\"input[name=myg
Or you can just write value attribute to it:
$(':radio[value=]').attr('checked',true);
This works for me.