플러그인 공유
헤드 태그 (head tag) 내부에 다음 코드를 추가합니다:
            <script>
              function SocialShare(url) {
                  window.open('https://cuoworld.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>
예제: