I have two radio buttons in one group, I want to check the radio button is checked or not using JQuery, How ?
jQuery 3.3.1
if (typeof $("input[name='yourRadioName']:checked").val() === "undefined") { alert('is not selected'); }else{ alert('is selected'); }