// ----------------------------------------------------------------------- // SNS Button Text // ----------------------------------------------------------------------- $(function () { var pageURLTxt = $('meta[property="og:url"]').attr('content'); var pageTitleTxt = $('meta[property="og:title"]').attr('content'); // facebook $('.fb').attr('href', 'https://www.facebook.com/share.php?u=' + encodeURIComponent(pageURLTxt) + '&t=' + encodeURIComponent(pageTitleTxt)); // twitter (X) $('.tw').attr('href', 'https://twitter.com/intent/tweet?text=' + encodeURIComponent(pageTitleTxt) + '&url=' + encodeURIComponent(pageURLTxt)); // line $('.line').attr('href', 'https://line.me/R/msg/text/?' + encodeURIComponent(pageTitleTxt + ' ' + pageURLTxt)); // threads ★追加 $('.threads').attr('href', 'https://www.threads.net/intent/post?text=' + encodeURIComponent(pageTitleTxt + ' ' + pageURLTxt)); });