เพิ่มโค้ดต่อไปนี้ในไซต์ของคุณภายในแท็กหัวเรื่อง:
<script>
function SocialShare(url) {
window.open('https://community.taoers.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>