Julienh / Sharrre

Make your sharing widget! Sharrre is a jQuery plugin that allows you to create nice widgets sharing for Facebook, Twitter, Google Plus (with PHP script) and more.
sharrre.com
MIT License
1.04k stars 411 forks source link

Pinterest supports JSONP, no need to use sharre.php #188

Open tmorehouse opened 10 years ago

tmorehouse commented 10 years ago
function getSharesPinterest(el,href) {
    // el => element to update
    // href => url to check
    $.ajax({
        url: 'http://api.pinterest.com/v1/urls/count.json',
        type: 'get',
        dataType: 'jsonp',
        data: { url: href }
    }).done(function(data) {
        $(el).text(data.count);
    });
}