Skip to content

Instantly share code, notes, and snippets.

@scottwater
Created April 10, 2020 18:54
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 scottwater/ede19df0e8ed8eb34378dd03e2600a33 to your computer and use it in GitHub Desktop.
Save scottwater/ede19df0e8ed8eb34378dd03e2600a33 to your computer and use it in GitHub Desktop.
Restripe a Table's Rows
reStripe() {
const rows = [...document.getElementsByClassName("archive-row")];
rows.forEach((element, index) => {
if (index % 2 == 0) {
element.classList.remove("bg-gray-50");
element.classList.add("bg-white");
} else {
element.classList.add("bg-gray-50");
element.classList.remove("bg-white");
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment