[jQuery] Find set of questions

[jQuery] Find set of questions


$('ol.ol1 > li') // returns a complete set of list elements containing
quiz results...
Some of the results contain correct answers, some incorrect
answers... The indicator would be another list contaiing the choices
and assigned classes: .correctchosen or .correctnotchosen
How do I filter the set so that it returns the set of correct list
elements? I want $('ol.ol1 > li'), but only those that contain at a
deepter level of the DOM, another li.correctchosen
Something like:
$('ol.ol1 > li').filter('go inside the li, looking for
li.correctchosen')
Sam