I have a JavaScript function for sharing on Pinterest like this:
function shareOnPinterest(url, desc, coverImage){
var str = "http://pinterest.com/pin/create/button/?url=" + encodeURIComponent(url) + "&media=" + coverImage + "&description=" +
desc;
window.open(str, "_blank");
}
The URL seems to be working fine but when I click Pin It button it doesn't pin to the board.
I have a reference to this Pinterest JavaScript on my page too.
<script type="text/javascript" src="//assets.pinterest.com/js/pinit.js"></script>
Is there anything I did wrong or is there any other way to share on Pinterest?
Thanks.
shareOnPinterestfunction does not requirepinit.js. Where do you find this script ? – Shivan Raptor Aug 16 '12 at 6:17Pin Itbutton instead. – Shivan Raptor Aug 16 '12 at 7:36