I have a small jQuery selectors question, I have the following html:
<
Use the :not() selector. For example:
$(".member-info:not(first)").hide();
If first is really always the first child, try
$(".member-info:not(member-info:first)").hide();