Could you not do something similar to when a user clicks the page an alert pops up.
replace the code where the popup occurs and just +1 to a counter.
If you wanted to store this data i spose there are 2 ways, one count all the clicks then when a user navigates away from the page make a call to the server to store the count into a database.
Or
Perform an ajax call each time a user clicks something, could be very heavy on your server though.
example code would be something like this i assume
$('#link_id').click(function(){
count = count + 1;
});
benjaminFowl87
Junior Poster in Training
74 posts since Aug 2010
Reputation Points: 17
Solved Threads: 1