I want to register multiple events in Universal Analytics. Can this only be done in multiple calls, like so?
ga('send', 'event1', {
eventCategory: 'category1',
eventAction: 'click',
});
ga('send', 'event2', {
eventCategory: 'category2',
eventAction: 'click',
});
Open in new window
Or is there a syntax for sending multiple events in a single call?