Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
document.getElementById('termsbox_id').addEventListener('change', function() { var checkoutButton =
document.querySelector('[name="checkout"]'); if (this.checked) { checkoutButton.removeAttribute('disabled'); } else
{ checkoutButton.setAttribute('disabled', 'disabled'); } });