Skip to content

Instantly share code, notes, and snippets.

@ihorduchenko
Last active July 6, 2023 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ihorduchenko/6f82981f680e3df24cccc77e2cbccca4 to your computer and use it in GitHub Desktop.
Save ihorduchenko/6f82981f680e3df24cccc77e2cbccca4 to your computer and use it in GitHub Desktop.
Prevent 'change' event from being triggered twice (especially on radio buttons)
el.addEventListener('change', (e) => {
e.stopImmediatePropagation();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment