Answers for "if radio checked, unfolded html"

5

check if radio button is checked

$('#element').click(function() {
   if($('#radio_button').is(':checked')) { alert("it's checked"); }
});
Posted by: Guest on October-13-2020
0

Radio enable note if member has valid radio

if(input.Member_Radios != null && input.Reprogram_this_radio == true)
{
	input.Radio_NOT_listed_above = false;
	//show the remainder of the fields here
	show Note;
	enable Note;
}
if(input.Radio_Make_and_Model != null && input.Enter_Radio_Serial != null && input.Reprogram_this_radio == true)
{
	show Note;
	enable Note;
}
Posted by: Guest on December-12-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language