I seem to be having a problem with this jquery code.
I want to add a class to the 1st and then every 6
Here is the code:Query:
$('ul li:nth-child(5n+1)').addClass("red").text("Here");
Here is the css:
li { background-color:blue; }
.red{ background-color: red; }
This should work for you: