Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 251 Bytes

File metadata and controls

14 lines (10 loc) · 251 Bytes

View on Stackoverflow

Using pure JavaScript:

let checkbox = document.getElementById('checkboxID');

if(checkbox.checked) {
    alert('is checked');
} else {
  alert('no checked yet');
}