Tambahkan kode berikut di situs Anda, di dalam tag head:
<script> function SocialShare(url) { window.open('https://onetouch.co.id/share?url=' + url, '', 'height=600,width=800'); } </script>
Kemudian tempatkan tombol bagikan setelah mengubah URL yang ingin Anda bagikan ke HTML halaman Anda:
<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>