Field Bar + Bottle Shop · Tacoma WA
Join the club.
Natural wine, curated monthly. Pickup on the first Wednesday.
// ── PAY BUTTON ────────────────────────────────────────────────────────────────
document.getElementById('pay-btn').addEventListener('click', function() {
hideErr('payment-error');
if (!elementsInst || !stripeInst) return;
var btn = document.getElementById('pay-btn');
btn.textContent = 'Processing\u2026';
btn.disabled = true;
stripeInst.confirmPayment({
elements: elementsInst,
confirmParams: { return_url: window.location.origin + '/join/return' }
}).then(function(result) {
if (result.error) {
btn.textContent = 'Start membership \u2192';
btn.disabled = false;
showErr('payment-error', result.error.message || 'Payment failed. Please try again.');
}
});
});