Can I track multiple Google Analytics events at once?

与世无争的帅哥 提交于 2019-11-29 07:12:47

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.

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!