Skip to content

Instantly share code, notes, and snippets.

@luisfc
Created April 5, 2017 23:32
Show Gist options
  • Save luisfc/f4a27c178ecf48a154d891f6b33bc9cc to your computer and use it in GitHub Desktop.
Save luisfc/f4a27c178ecf48a154d891f6b33bc9cc to your computer and use it in GitHub Desktop.
selector not y nth-child css
#jQuery
jQuery("thead tr th:not(:nth-child(3n+2))").css("display", "none");
jQuery("tbody tr td:not(:nth-child(3n+2))").css("display", "none");
#css
thead tr th:not(:nth-child(3n+2)),
tbody tr td:not(:nth-child(3n+2)) {
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment