function embeddedPuffs(eId,pId,pLink,pImgUrl,pCaption,pColor){ //för att populera inbäddade puffar med GA tracking if (pColor==undefined){ pColor='Vit'} var span= document.getElementById(eId); document.querySelector("#"+eId + ">img")?.remove(); var fragment = document.createDocumentFragment(); divContainer=document.createElement('div') divContainer.setAttribute("class","relative flex"); aElement=document.createElement('a'); aElement.setAttribute("href",pLink); //aElement.setAttribute("onclick",'promo(true,"'+pId+'","'+pId+'")'); imgElement=document.createElement('img'); imgElement.setAttribute("src",pImgUrl); aElement.appendChild(imgElement); divContainer.appendChild(aElement); fragment.appendChild(divContainer); divContainer=document.createElement('div') divContainer.setAttribute("class","centerpuff lasmerknapp" + pColor); aElement=document.createElement('a'); aElement.setAttribute("href",pLink); //aElement.setAttribute("onclick",'promo(true,"'+pId+'","'+pId+'")'); aElement.innerHTML=pCaption; divContainer.appendChild(aElement); fragment.appendChild(divContainer); span.appendChild(fragment); promo(false,pId,pId); }