Skip to content

Instantly share code, notes, and snippets.

@PedroRajao
Last active March 11, 2019 18:17
Show Gist options
  • Save PedroRajao/266fcdf2007db580bb83cd043064b1c1 to your computer and use it in GitHub Desktop.
Save PedroRajao/266fcdf2007db580bb83cd043064b1c1 to your computer and use it in GitHub Desktop.
Get the Nth element from Class
// https://medium.com/@MateMarschalko/css-select-nth-element-with-class-a313d080e2bf
// CSS
.className:nth-of-type(3) {
color: red;
}
// JS
$(".className:eq(1)").css("color", "red");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment