What I want:
Within $myElement find all elements with class .myClass and attribute display:none. Below is what I have tried, I've probably missed something stupid:
$myElement.find('.myClass[display=none]')
and
$myElement.find('.myClass').filter('[display=none]')