Aşağıdaki kodu sitenize head etiketinin içine ekleyin:
<script>
function SocialShare(url) {
window.open('https://girbir.com/share?url=' + url, '', 'height=600,width=800');
}
</script>
Ardından paylaşmak istediğiniz URL'yi sayfanızın HTML'sine değiştirdikten sonra paylaş düğmesini yerleştirin.:
<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>
Örnek vermek: