boucle jQuery à travers l'élément Li

//looping through list elements in jquery
$('#myUlID li').each(function() {
  console.log($(this));
})
Grepper