Is there a way to register a callback on Twitter's Tweet button? I'd like to be able to track which particular users on my site have tweeted a link. I can't add on onClick event because it's a cross-domain iFrame. Any other ideas?

I've seen one way to do it but it seems unreliable. Their documentation doesn't mention anything so I am looking for help with a work-around.

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

Not currently. There is an open feature request and you can star it to get notified of completion. http://code.google.com/p/twitter-api/issues/detail?id=1835

Update: Twitter has since added Web Intent events.

link|improve this answer
Consider it starred! Thanks – jnunn Feb 9 '11 at 17:14
Intents are indeed the way to go. Works like a charm. – dalbaeb Mar 19 at 19:14
feedback

I have just implemented a tweet callback event.

More information on Twitter's callback event
- Twitter Web Intents
- Web Intents Javascript Events

The Javascript callback

$.getScript("http://platform.twitter.com/widgets.js", function(){
   function handleTweetEvent(event){
     if (event) {
       alert("This is a callback from a tweet")
     }
   }
   twttr.events.bind('tweet', handleTweetEvent);        
 });

The tweet button:

 <a href="http://twitter.com/intent/tweet?url=http://test.com;via=stack">twitter</a>
link|improve this answer
feedback

yes, there is a callback function. for custom twitter buttons as well. you can find it here: https://dev.twitter.com/discussions/671

link|improve this answer
feedback
<a href="https://twitter.com/IamAnessaReyes" class="twitter-follow-button" data-show-count="false">Follow @IamAnessaReyes</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.