Childfilters
Een childfilter selecteert het n-de element binnen het parent element. Zie : http://api.jquery.com/category/selectors/child-filter-selectors/
Eerste child element :first-child
Laatste child element :last-child
Eerste sibling element binnen dezelfde parent :first-of-type
Laatste sibling element binnen dezelfde parent :last-of-type
n-de child elementen
De index start hier vanaf 1 en niet vanaf 0! De letter n staat voor een geheel getal (0, 1, 2, 3, ...).
Het enige child element :only-child()
Het enige child element van dat type binnen dezelfde parent :only-of-type()
Last updated