michael2
9/11/2017 - 12:30 AM

SHOP CART - this code will put the shopping cart price after description for each cart item

SHOP CART - this code will put the shopping cart price after description for each cart item

<script>
$(".cartItem").each(function () {    //loop over each cart item
    myInfo= $(".cartItemInfo", this);         //get the info of current cart item
    $(".cartItemPrice", this).insertAfter(myInfo); //insert current cart item price after description
});
</script>