If I have a javascript form that toggles lots of buttons on or off, if I want to capture the buttons that were pressed, could I do this in google analytics?, or is it something I would need store in my own database?… if it is possible in GA, can someone point me in the right direction?… kind regards J
Share
Read up on the GA event tracking: https://developers.google.com/analytics/devguides/collection/gajs/eventTrackerGuide
It’ll let you push custom events or actions to GA. So for example:
This just records that the form has been submitted, but you can dive a bit deeper in to it to try recording specific values if needed.