How do I skip the first iteration of an $.each()?

Viewed 25084

I have a JSON list that I want to iterate over, but skip the first entry, like thus:

$.each(
    data.collection,
    function() { DoStuffButOnlyIfNotTheFirstOne(); }
);

Any ideas?

5 Answers
Related