Skip to product information
1 of 1

Blended Farms Gift Cards

Blended Farms Gift Cards

Details

Blended Farms gift cards are digital downloads and can be used immediately. They never expire and can be used on all products and promotions.
Regular price $50.00
Regular price Sale price $50.00
Sale Sold out
Denominations
View full details
src="path-to-shopify-cart-integration.js"> `; document.body.insertAdjacentHTML('beforeend', modalHTML); deliveryModal = document.getElementById('delivery-modal'); setupModalEventListeners(); } function setupModalEventListeners() { // Set minimum date to tomorrow const tomorrow = new Date(); tomorrow.setDate(tomorrow.getDate() + 1); const deliveryDateInput = document.getElementById('delivery-date'); if (deliveryDateInput) { deliveryDateInput.min = tomorrow.toISOString().split('T')[0]; } // Close modal when clicking outside deliveryModal.addEventListener('click', function(e) { if (e.target === deliveryModal) { closeDeliveryModal(); } }); // Enable calculate button when all fields are filled const inputs = ['street', 'city', 'state', 'zipcode']; inputs.forEach(id => { const input = document.getElementById(id); if (input) { input.addEventListener('input', checkFormComplete); } }); } function checkFormComplete() { const street = document.getElementById('street').value.trim(); const city = document.getElementById('city').value.trim(); const state = document.getElementById('state').value; const zipcode = document.getElementById('zipcode').value.trim(); const calculateBtn = document.getElementById('calculate-btn'); if (street && city && state && zipcode) { calculateBtn.style.background = '#27ae60'; calculateBtn.disabled = false; } else { calculateBtn.style.background = '#95a5a6'; calculateBtn.disabled = true; } }