Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

js check if radio button is checked

if(document.getElementById('gender_Male').checked) {
  //Male radio button is checked
}else if(document.getElementById('gender_Female').checked) {
  //Female radio button is checked
}
Comment

check if one of the radio button is checked


      if ($('input[name='+ radioName +']:checked').length) {
           // at least one of the radio buttons was checked
           return true; // allow whatever action would normally happen to continue
      }
      else {
           // no radio button was checked
           return false; // stop whatever action would normally happen
      }
    
Comment

PREVIOUS NEXT
Code Example
::  
::  
::  
Javascript ::  
Javascript ::  
::  
Javascript ::  
::  
::  
::  
Javascript ::  
Javascript ::  
::  
::  
Javascript ::  
Javascript ::  
::  
::  
:: select second child in js 
::  
::  
::  
::  
::  
Javascript ::  
::  
Javascript :: reaact native expo jsx 
Javascript ::  
Javascript ::  
::  
ADD CONTENT
Topic
Content
Source link
Name
5+7 =