Right now, I have a scenario with several UL's with 5 or more LI's - for each UL, I'd like to apply a specific style to the 5th LI.
Using:
$("ul li:eq(4)")
Works fine for the first UL on the page, but farts out for the remaining UL's. Any idea how to get this hit all the UL's?
Also, ultimately I'd like to target multiple's of 5 - so the 5th, 10th, 15th items, etc... Not sure how I'd accomplish that without manually stating eq(9), eq(14) etc...