theonlychase
11/14/2017 - 4:47 AM

Add text onto all instances of a string

Add text onto all instances of a string

$( document ).ready(function() {
  var label = $("label");
  $(".rt-unero div.product form.cart .variations label").each(function () {
    $(this).html($(this).text() + ":");
  });
});