tags:

views:

8

answers:

1

Hi - my javascript is horrible so I'm not sure if this is as straight forward as I'd hoped.

I'd like to track user clicks through mouse events on my website. I have some simple java script that does that. How do I go about making it so my backend can store this? Is it even possible.

Backend for now can be in anything what so ever :)

+1  A: 

You can log events in the background using Ajax calls. Most JS frameworks, such as jQuery make this quite simple to do.

Diodeus