Direct Payment

Make payments to the Bradford Wolves Soccer Club. Common payment types include sponsorships or payment plans.

script> document.addEventListener('DOMContentLoaded', function () { const paymentTypes = document.querySelector('#payment-type'); Array.from(paymentTypes.options)[0].setAttribute('disabled', 'disabled'); paymentTypes.value = 'Other'; resetPriceInput(); paymentTypes.addEventListener('change', (e) => { resetPriceInput(); }) function resetPriceInput() { let checkExist = setInterval(function () { if (document.querySelector('#custom_price_field_variation') !== null) { const priceInput = document.querySelector('#custom_price_field_variation'); priceInput.setAttribute('placeholder', '0.00'); priceInput.value = ''; clearInterval(checkExist); } }, 100); } const cartForm = document.querySelector('form.variations_form.cart'); cartForm.setAttribute('action', '/cart'); console.log(cartForm); });