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?
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?