Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
document.addEventListener('DOMContentLoaded', function() {
const messages = document.querySelectorAll('.announcement-bar__message');
messages.forEach(msg => {
const text = msg.innerHTML;
const wordToHighlight = '25% DESCUENTO';
if (text.includes(wordToHighlight)) {
msg.innerHTML = text.replace(wordToHighlight, `${wordToHighlight}`);
}
});
});