
GIFT CARD
Gift your friend or loved one the cleanest juice products on Earth (literally)! Now offering exact preset amounts for our 2 and 3-day cleanses, making it easier than ever to cleanse together from anywhere in the U.S. Write a personal message and select the day it needs to arrive, and they'll receive a well-designed email with their digital gift card code! Enter Card Code Card code not found Remaining Balance: $ document.addEventListener('alpine:init', () => { Alpine.data('alpineCheckGiftCardBalance', () => ({ cardCode: null, cardBalance: null, processing: false, error: false, checkBalance() { let self = this; self.cardBalance = null; self.processing = true; fetch("https://rawjuicery.com/apps/gkt/getBalanceV3?shopName=the-raw-juicery.myshopify.com&code=" + this.cardCode) .then(response => response.json()) .then(function (data) { self.cardBalance = data.data.balance self.processing = false }) .catch(function (error) { self.processing = false self.error = true }); }, })) })