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
This is what I did:
var start = index + 1;
This just adds 1 to the current index.. then use that new variable instead of 'index'.