We use cookies to improve your experience on our site. By using our site, you consent to the use of cookies. Rejecting cookies will prevent non-essential cookies from loading.
window.addEventListener("DOMContentLoaded", function() {
// Selecciona el botón con el ID 'hl-pagination-next'
const botonAnterior = document.getElementById("hl-pagination-previous");
// Verifica si el botón existe y cambia su texto
if (botonAnterior) {
botonAnterior.textContent = "Anterior";
}
});