Intereting Posts

Социальная доля

Я следую этому руководству для создания своих собственных кнопок Share Share с помощью счетчиков: Social Share Tutorial И я не могу понять, почему количество социальных долей не произойдет.

Это сайт HubSpot, и страница здесь

Я также создал скрипку, чтобы показать код, который я использую.

Любое понимание было бы высоко оценено!

Это php-файл, который вызывается в js.

Js:

function get_social_counts() { var thisUrl = window.location.protocol + "//" + window.location.host + window.location.pathname; $.ajax({ type: "GET", url: 'http://cdn2.hubspot.net/hubfs/169677/social_sharing/get_social_counts.php? thisurl='+thisUrl, dataType: "json", success: function (data){ $('a.post-share.twitter span').html(data.twitter); $('a.post-share.facebook span').html(data.facebook); $('a.post-share.gplus span').html(data.gplus); $('a.post-share.stumble span').html(data.stumble); } }); } $(document).ready(function(){ get_social_counts(); }); 

благодаря