I've got a form with roughly 20 fields. There are both types of fields inputs and select. I need to send info about field usage to Google Analytics, but they allow to send only one request per event as far as I know. What I mean, is that one can't do something like
ga('send', 'event', [
{'some.elaborate.event', 'some.elaborate.event'+$this.attr('alt'), 'username', $this.val()},
{'some.elaborate.event', 'some.elaborate.event'+$this.attr('alt'), 'username', $this.val()},
...
]);
as far as I know.
Are there any solutions for such type of a problem?