document.addEventListener("DOMContentLoaded", function() { const share_url = encodeURI(location.href); const share_title = encodeURI(document.title); document.getElementById('js-share-twitter').onclick = function() { window.open("https://twitter.com/share?url=" + share_url + "&text=" + share_title, 'win_small', 'width=600, height=500, location=no,toolbar=no,menubar=no,resizable=no,scrollbars=yes,status=no'); } document.getElementById('js-share-line').onclick = function() { window.open("https://social-plugins.line.me/lineit/share?url=" + share_url, 'win_small', 'width=600, height=500, location=no,toolbar=no,menubar=no,resizable=no,scrollbars=yes,status=no'); } document.getElementById('js-share-facebook').onclick = function() { window.open("https://www.facebook.com/sharer/sharer.php?u=" + share_url, 'win_small', 'width=600, height=500, location=no,toolbar=no,menubar=no,resizable=no,scrollbars=yes,status=no'); } });