One or more of the items in your cart is a recurring or deferred purchase. By continuing, I agree to the cancellation policy and authorize you to charge my payment method at the prices, frequency and dates listed on this page until my order is fulfilled or I cancel, if permitted.
 
 
One or more of the items in your cart is a recurring or deferred purchase. By continuing, I agree to the cancellation policy and authorize you to charge my payment method at the prices, frequency and dates listed on this page until my order is fulfilled or I cancel, if permitted.
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');
}