I'm very new to jquery and I have an element
which I have selected as an object variable. If I want to select instances of other objects within it, how could I do so? e.g.
var element = $('header');
var list_element = element.('nav ul li:first')
In this case I want to select the first list element of every ul of every nav within element
.