Skip to content

Instantly share code, notes, and snippets.

@sebkolind
Created October 13, 2023 19:00
Show Gist options
  • Save sebkolind/b0bfd438806fa93da7e6a471ee8504e8 to your computer and use it in GitHub Desktop.
Save sebkolind/b0bfd438806fa93da7e6a471ee8504e8 to your computer and use it in GitHub Desktop.
Remove all classes from element
const el = document.querySelector('.my-el');
el.classList.remove(...el.classList);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment