הוסף את הקוד הבא באתר שלך, בתוך תגית ה-head:
<script>
function SocialShare(url) {
window.open('https://bezmanemetsocial.friends-social.com/share?url=' + url, '', 'height=600,width=800');
}
</script>
לאחר מכן, מקם את כפתור השיתוף בדף ה-HTML שלך, אחרי שתשנה את כתובת ה-URL שברצונך לשתף:
<button onclick="SocialShare('http://yoursite.com/')">Share</button>
באפשרותך להשתמש בקוד זה גם כדי לשתף את הדף הנוכחי:
<button onclick="SocialShare(window.location.href)">Share</button>