헤드 태그에 다음 코드를 추가합니다:
<script> function SocialShare(url) { window.open('https://ifvex.com/share?url=' + url, '', 'height=600,width=800'); } </script>
페이지 HTML에 공유할 URL을 변경한 후 공유 버튼을 배치합니다:
<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>