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:
Any ideas?
|
|||
|
|
|
|
Is this good enough?
|
||
|
|
|
or, probably more efficiently:
|
|||
|
|
|
|
||
|
|
|
|
You can use the good old firstFlag approach:
But instead, I'd recommend that you filter your data collection first to remove the first item using a selector. |
||||
|