Přidejte následující kód na svůj web, uvnitř tagu head:
<script> function SocialShare(url) { window.open('https://zvysujeme.cz/share?url=' + url, '', 'height=600,width=800'); } </script>
Po změně adresy URL, kterou chcete sdílet s HTML stránky, umístěte tlačítko sdílení:
<button onclick="SocialShare('http://yoursite.com/')">Share</button>
Also you can use this code to share the current page:
<button onclick="SocialShare(window.location.href)">Share</button>