Right... I need to find all < ul style=\"display: block;\"> elements, so that I can set it do display:none.
I think I\'m on the right path here... but not quite t
$('#adminMenu li').find("ul:visible").css('display', 'none');
or
$('#adminMenu li').find("ul:visible").hide();
$('#adminMenu li ul:visible').hide();
to name a few ways