How do I start jQuery $.each()
index from 1 instead of 0?
I am using .each function to populate select box. So here I want to populate options in the se
$('.article_number').each(function(index) {
index=index+1;
$(this).text(index);
});
even starting from 0 each time it takes the index and adds one for the text.
so 0 will become 1 in text. 1 will become 2 in text and so on.
This won't interrupt the last item in line cause it's only changing the index of the text not on the each function.
Hope this is what you ment.