SyntaxFix
Write A Post
Hire A Developer
Questions
//the following code checks if your radio button having name like 'yourRadioName' //is checked or not $(document).ready(function() { if($("input:radio[name='yourRadioName']").is(":checked")) { //its checked } });