$('.facebook').each(function() {
var title = $(this).attr('data-url');
var fb = 'http://www.facebook.com/sharer.php?u=' + title;
$(this).attr("href", fb)
});
$('.twitter').each(function() {
var title = $(this).attr('data-url');
var tweet = 'https://twitter.com/home?status=' + title;
$(this).attr("href", tweet)
});
$('.google-plus').each(function() {
var title = $(this).attr('data-url');
var gplus = 'https://plus.google.com/share?url=' + title;
$(this).attr("href", gplus)
});
$('.pinterest').each(function() {
var title = $(this).attr('data-url');
var dataImg = $(this).attr('data-src');
var pin = 'https://pinterest.com/pin/create/button/?url=' + title + '&media=' + dataImg
$(this).attr("href", pin)
});
$('.linked-in').each(function() {
var title = $(this).attr('data-url');
var link = 'https://www.linkedin.com/shareArticle?mini=true&url=' + title
$(this).attr("href", link)
});