I'm trying to track my Facebook likes with Google Analytics.
What I planned on doing was adding a jQuery event listener on the like button.
The like button is contained within a form with the id of "u_0_4", so I added this to header.php of my wordpress site (hearingcareblog.com):
<script>
$(document).ready(function(){
$("#u_0_4").submit(function(){
alert('test');
//this is where I would have my tracking code
});
});
</script>
but the alert doesn't come up when I click the like button.
Has anyone else tried this?
Any ideas as to why my jQuery wont listen to the form?