I have this line of code for page load:
if ($(\"input\").is(\':checked\')) {
and it works fine when the radio button input is checked. How
$('input:radio[checked=false]');
this will also work
input:radio:not(:checked)
or
:radio:not(:checked)