How do I start jQuery $.each() index from 1 instead of 0?
$.each()
I am using .each function to populate select box. So here I want to populate options in the se
$.each
So try
$.each(obj, function(i, elem) { if (i === 0) return; // do stuff });
Alternatively rewrite your code so its so indexes and data start at 0. JavaScript is interally 0 based rather then 1 based like Matlab and some other languages.