document.addEventListener('DOMContentLoaded', function() {
var button = document.querySelector('p.return-to-shop > a');
button.textContent = 'Go to lesson';
button.addEventListener('click', function(event) {
event.preventDefault();
window.location.href = 'https://apexspanish.com/lesson';
});
});

Leave a Comment