(function ($) {
$(".wrap").each(function () {
$(".item", this).prepend(function (i) {
return $("<span />", { text: i + 1 });
});
});
})(jQuery);
(function ($) {
$(".wrap").each(function () {
$(".item", this).prepend(function (i) {
return $("<span />", { text: i + 1 });
});
});
})(jQuery);