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>