1 - Atteindre un sélecteur Parent qui contient un Enfant spécifique
Utiliser :has() :
$("#parent #child") selects all #child elements that are children of #parent.
$('#parent:has(#child)') selects all #parent elements that have #child as children.
Utiliser :has() :
$("#parent #child") selects all #child elements that are children of #parent.
$('#parent:has(#child)') selects all #parent elements that have #child as children.