သင့်ဆိုက်တွင် အောက်ပါကုဒ်ကို ခေါင်းစဉ်တက်ဂ်အတွင်း ထည့်ပါ။:
<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>