Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is it possible to get the javascript click event for the facebook like button? Actually in my page I have just added

<a id='Facebook' class="addthis_button_facebook_like" fb:like:layout="button_count"></a>

When I clicked on this anchor tag it is not taking the click event in my page, click is happening in the facebook that contained inside the iframe loaded inside the anchor tag by facebook. I am using click event js as

document.addEventListener('click', function(e) { }

How may times the fb like button clicked, that information is what I am looking for. But the click event itself not firing in my page. Please help me.

Mbn

share|improve this question

1 Answer

By using facebook javascript SDK with XFBML/HTML5 implementation of like button, you can subscribe to events using FB.Event.subscribe

https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

If you want to stick with iframe(third party), only way to track will be using analytics data provided by facebook. developers.facebook.com/docs/insights

share|improve this answer
Thanks for your response. For my case I need the click count of the facebook like button or tweet button. It may be twitter fb pin it ect. So I need a click count of these buttons. Inside Iframe click is not getting on parent page because Iframe is handling by the third parties ie., facebook, twitter ect...Please help me for this – user1708190 Oct 20 '12 at 7:02
What you are trying to achieve is tracking the click rights?. Not sure you can do this by using iframe. You can achieve this without iframe. eg: for twitter you can use Web Intents dev.twitter.com/docs/intents/events – Nish Oct 20 '12 at 7:11
Exactly, I want to track the clicks. Whatever the buttons or links that the clients can manage. So it may be facebook like or some other. So issue is with that iframe only. fb like iframe and twitter tweet iframe. Thanks for your response. – user1708190 Oct 20 '12 at 8:39
It is impossible to track events when using iframes(third party).If you want to stick with iframe only way to track will using analytics provided by fabook/twitter. developers.facebook.com/docs/insights – Nish Oct 20 '12 at 13:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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