Add Change Listener To Form Checkbox Element In JavaScript

const checkbox = document.getElementById('checkbox-id')

checkbox.addEventListener('change', (event) => {
  if (event.currentTarget.checked) {
    console.log('checked');
  } else {
    console.log('not checked');
  }
})

Form would look like this:

<input id="checkbox-id" type="checkbox" />

 

Add new comment

The content of this field is kept private and will not be shown publicly.
CAPTCHA
8 + 1 =
Solve this simple math problem and enter the result. E.g. for 1+3, enter 4.
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.