Your variable definition var _gaq
is inside a function. That means it’s locally scoped inside that function and won’t exist globally. Google Analytics depends on the global variable _gaq
. If you want to keep it inside a function like that, reference it as window._gaq
.