const html = `
Szukasz noclegu? Sprawdź wGory.pl
`;document.querySelectorAll('.akceptBanner').forEach((wrapper) => { wrapper.innerHTML = html; const image = wrapper.querySelector('.akceptBanner__image'); if(window.innerWidth < 1200 && window.innerWidth > 500) { image.src = image.getAttribute('data-src-horizontal'); } else if(window.innerWidth <= 500) { image.src = image.getAttribute('data-src-vertical'); } });