Free UK delivery over £60.00 | Fast Shipping

var discoverButton = document.querySelector('a.btn span'); // Check if the text inside the span is 'Discover' if (discoverButton && discoverButton.textContent.trim() === 'Discover') { // Get the parent anchor element and add target="_blank" discoverButton.closest('a').setAttribute('target', '_blank'); }