Alternative for nth-child for older IE browsers
Is there an alternative for targeting elements using nth-child() for older IE browsers? Javascript (non-jquery) would suffice as well. EDIT: Given additional libraries cannot be added to the page. You can use jQuery's :nth-child() selector; $("li:nth-child(even)") // target even li's $("li:nth-child(odd)") // target odd li's $("li:nth-child(5n)") // target the fifth li it sucks a little, but you can ul > li {} /* first-child, overwritten by below */ ul > li + li {} /* second-child, overwritten by below, etc */ ul > li + li + li {} ul > li + li + li + li {} Repeat as necessary. There is