Untitled

 avatar
unknown
html
2 years ago
847 B
3
Indexable
<script type="text/javascript">
  let wrapper = document.querySelector('.elementor-social-icons-wrapper');
  let newSpan = document.createElement('span');
  let newContent = document.createElement('a');

  // Lisää tähän linkin osoite
  newContent.setAttribute('href', 'KORVAA TÄMÄ WHATSAPP LINKILLÄ');
  newContent.setAttribute('target', '_blank');
  newContent.setAttribute('class', 'elementor-icon elementor-social-icon elementor-social-icon-whatsapp');

  // alemmalta riviltä voit säätää ikonin kokoja vaihtamalla width & height arvoja
  newContent.innerHTML = '<span class="elementor-screen-only">WhatsApp</span><img class="fab fa-whatsapp" src="https://img.icons8.com/ios-filled/512/whatsapp.png" alt="" width="15" height="15"></img>';

  newSpan.appendChild(newContent);
  wrapper.appendChild(newSpan);
</script>
Editor is loading...