Skip to content

Instantly share code, notes, and snippets.

@grampelberg
Created October 28, 2019 23:28
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 grampelberg/ec6fc3e518763e719fb190b03a3467a5 to your computer and use it in GitHub Desktop.
Save grampelberg/ec6fc3e518763e719fb190b03a3467a5 to your computer and use it in GitHub Desktop.
function expandSibling(el) {
var chevron = el.querySelector("td:first-child > i").classList;
chevron.toggle("fa-angle-down");
chevron.toggle("fa-angle-right");
el.nextElementSibling.classList.toggle("hide");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment