I\'m trying to create and manipulate the Pin It button after page load. When i change the button properties with js, it should be rerendered to get the functionality of pinning
Just add data-pin-build
attribute to the SCRIPT
tag:
That causes pinit.js
to expose its internal build
function to the global window
object as parsePinBtns
function.
Then, you can use it to parse links in the implicit element or all of the links on the page:
// parse the whole page
window.parsePinBtns();
// parse links in #pin-it-buttons element only
window.parsePinBtns(document.getElementById('pin-it-buttons'));
Hint: to show zero count just add data-pin-zero="1"
to SCRIPT
tag.