เพิ่มโค้ดต่อไปนี้ในไซต์ของคุณ ภายในแท็ก head:
<script> function SocialShare(url) { window.open('https://ifvex.com/share?url=' + url, '', 'height=600,width=800'); } </script>
จากนั้นวางปุ่มแชร์หลังจากเปลี่ยน URL ที่คุณต้องการแชร์ไปยัง HTML ของเพจ:
<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>