Available in 1 & 5 Gallon Sizes 1-Gallon Size: $119.95 5-Gallon Size: $599.75 FREE Ground shipping! Please contact us for rates on expedited shipping
Buy LeadClear Paint
1 Gallon — $119.95
5 Gallon — $599.75
// Update PayPal hidden fields when the size selection or quantity changes
function updatePayPalAmount() {
var sel = document.getElementById(‘size’);
var selectedOption = sel.options[sel.selectedIndex];
var price = selectedOption.getAttribute(‘data-price’) || ‘119.95’;
var qty = parseInt(document.getElementById(‘quantity’).value, 10) || 1;
// Set the hidden fields PayPal expects
document.getElementById(‘amount’).value = (parseFloat(price) * 1.0).toFixed(2);
document.getElementById(‘item_name’).value = ‘Leadclear Paint – ‘ + (sel.value === ‘1’ ? ‘1 Gallon’ : ‘5 Gallon’);
// Note: PayPal’s _xclick respects the “quantity” field, so we leave quantity input named “quantity” in the form.
}
// Also update when quantity changes
document.getElementById(‘quantity’).addEventListener(‘change’, function() {
// keep amount equal to price of single unit – PayPal will multiply by quantity
updatePayPalAmount();
});
// initialize defaults
updatePayPalAmount();