Hello,
I’m using twitter widgets javascript (https://platform.twitter.com/widgets.js) to register to tweet events but I’ve notice that I get the callback when the user click on the tweet button (which opens a popup). I want the callback when the user click tweet inside the popup.
Here is my code:
twttr.ready(function (twttr) {
twttr.events.bind(
'tweet',
/**
*
*/
function(){
console.log('user tweet');
});
});
Please help.
Thanks