i am trying to select a radio button by JQUERY, but i am not able to do so. i tried using these but its not working.
$("#agencyBill").prop("checked", true);
$radios.filter('[value=Agency Bill]').prop('checked', true);
$("[name=customRadio]").filter("[value='Agency Bill]']").attr("checked","checked");
here is fiddle link of the same
i need to select it either by its value or by its id anyone will do.