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