Can I track multiple Google Analytics events at once?

后端 未结 1 1360
挽巷
挽巷 2020-12-18 05:53

I am using Event Tracking on our conversion form to pass the values of a few drop-downs to Google Analytics as events. Our conversion form is an inquiry form for our online

相关标签:
1条回答
  • 2020-12-18 06:05

    I tested pushing multiple events with one push and it worked fine. It may be submitting the form before all the _trackEvents are pushed.

    Try adding a setTimeout to the form.submit() to give the _gaq.push time to send all of them.

    setTimeout(function(){ form.submit(); }, 200);
    

    Install Chrome and the Google Analytics Debugger. Look in the console (control, shift, j) for the event tracking processing.

    enter image description here

    If you don't see all of your events tracking there, then something is up maybe with the form values.

    0 讨论(0)
提交回复
热议问题