I have two radio buttons in one group, I want to check the radio button is checked or not using JQuery, How ?
Check this one out, too:
$(document).ready(function() { if($("input:radio[name='yourRadioGroupName'][value='yourvalue']").is(":checked")) { //its checked } });