Skip to content

Instantly share code, notes, and snippets.

@skyzer
Created November 15, 2014 04:30
Show Gist options
  • Save skyzer/9719d01c5f87cda5e5f4 to your computer and use it in GitHub Desktop.
Save skyzer/9719d01c5f87cda5e5f4 to your computer and use it in GitHub Desktop.
$('.btn-pinterest').click(function() {
var url = $(this).attr('href');
var media = $(this).attr('data-image');
var desc = $(this).attr('data-desc');
window.open(
"//www.pinterest.com/pin/create/button/"+
"?url="+url+
"&media="+media+
"&description="+desc,
'popupwindow',
'scrollbars=yes,width=800,height=315');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment