I have the following code:-
var $div = $("#preloader");
$.each($.imgNames, function (i, val) {
$("<img />").attr("src", $.largePath + val).addClass('PRELOADED').appendTo($div);
});
Is it possible to get jQuery to start the index from [1] instead of the [0]?
1 Answer