document.write(`
`);
jQuery(document).ready(function() {
var ua = navigator.userAgent;
var re = new RegExp('MSIE ([0-9]{1,}[\.0-9]{0,})');
var played_4c86f88758f0509669eef9eb2ca9b59d = false;
const targetNode = document.getElementById('green-player-4c86f88758f0509669eef9eb2ca9b59d');
const observerConf = { attributes: true, childList: true, subtree: true };
const callback = function(mutationsList, observer) {
// Use traditional 'for loops' for IE 11
for(const mutation of mutationsList) {
if (mutation.type === 'attributes' && mutation.attributeName == 'aria-label') {
console.log('The ' + mutation.attributeName + ' attribute was modified.');
console.log(played_4c86f88758f0509669eef9eb2ca9b59d);
if (!played_4c86f88758f0509669eef9eb2ca9b59d) {
$.post('https://radio.montornes.cat/radios/la-llanterna-magica/2025/02/14/la-llanterna-magica-dia-mundial-de-la-radio-2025', {
play: true
});
played_4c86f88758f0509669eef9eb2ca9b59d = true;
}
}
}
};
const observer = new MutationObserver(callback);
observer.observe(targetNode, observerConf);
});