Consider that I have an array ["a","b","c"] and that I want to iterate over it using the standard each() function like so:
$(array).each(function (i) { }); However, is there an easy way to start an offset, say the second array element ("b") such that the iteration would just work on "b", "c"? Thanks.