jQuery :nth-of-type() Seçicisi

:nth-of-type() Seçicisi;

N’ inci çocuk olan tüm elementleri seçmek için kullanılır.

Örnek

 $("li:nth-of-type(2)").css("background-color", "red");

Codepen Ön izleme

Kullanım şekilleri;

:nth-of-type(n|even|odd|formula)

CSS3 :nth-of-type() Seçicisi

:nth-of-type() Seçicisi

“nth-child()” ile aynı işi yapar.

Versiyon: CSS3

Örnek

ul li:nth-of-type(2) {
  color:red;
}

Codepen Ön izleme

Tarayıcı Desteği

4.0 3.5 9.0 3.2 9.6