Policiales

function insertarContenidoSegunPantalla() { const ancho = window.innerWidth; const contenedor = document.getElementById('block-ads-noticia'); contenedor.innerHTML = ''; if (ancho > 768) { contenedor.innerHTML = `
`; } else { contenedor.innerHTML = `
`; } } insertarContenidoSegunPantalla(); window.addEventListener('resize', insertarContenidoSegunPantalla);