Skip to content

Blog

document.addEventListener('DOMContentLoaded', function() { const shippingOptions = document.querySelectorAll('input[name="shipping_method"]'); shippingOptions.forEach(option => { if (option.value.includes('Royal Mail Tracked 24 (1-2 Days)')) option.checked = true; // Set it as checked } }); });