I have a small jQuery selectors question, I have the following html:
<
$('.member-info:not(.first)').hide();
This uses the not-selector(docs) to exclude elements with the first
class.
Or if the purpose of the first
class is simply to identify the first, then do this instead:
$('.member-info').slice(1).hide();
This uses the slice()(docs) method to return a set starting with the second match.