I am currently integrating google analytics into my signup form. I am concerned that I track faulty results as some people may fill in data that is not correct. Analytics would track the event when clicking the submit button, the server may however return the user to the same url saying there was an error.
Some solutions I can think of:
- Submit the form via Ajax
- Create a gateway page where I track the goal.
- Validate the form clientside.
- Use google analytics serverside?
How have you solved the problem?