បន្ថែមកូដខាងក្រោមនៅក្នុងគេហទំព័ររបស់អ្នក នៅខាងក្នុងស្លាកក្បាល:
<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>