Is there an alternative for targeting elements using nth-child() for older IE browsers?
nth-child()
Javascript (non-jquery) would suffice as well.
EDIT: Giv
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