Order Numbers

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

Click to Copy